CJCoding With Joseph

Fallback Value On Parse Error

Declare int n;. Read a line and try to parse it into n. If parsing throws a FormatException, set n = 0 instead. After the try/catch, print Value is <n>. This shows using a catch to recover and keep running. Use top-level statements.

Input 42 prints: Value is 42
Input oops prints: Value is 0

Expected Output:

Value is 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.