โ Back to Exceptions
Question 644
Parse Integer Safely
Parse Integer Safely
Read one line of input and parse it to an integer withint.Parse. If it succeeds, printParsed: <n>. If the text is not a number,int.Parsethrows aFormatException; catch it and printError: not a number. Use top-level statements withtry/catch. Input42prints: Parsed: 42 Inputabcprints: Error: not a number
Expected Output:
Parsed: 42
Topics:
Exceptions
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.