CJCoding With Joseph

Parse Integer Safely

Read one line of input and parse it to an integer with int.Parse. If it succeeds, print Parsed: <n>. If the text is not a number, int.Parse throws a FormatException; catch it and print Error: not a number. Use top-level statements with try/catch.

Input 42 prints: Parsed: 42
Input abc prints: Error: not a number

Expected Output:

Parsed: 42
Topics:
Exceptions
๐Ÿ“ฅ Auto-Input:
42\n
This input is automatically fed to your program's stdin
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.