CJCoding With Joseph

Recover With a Default Value

Try to parse the input into a variable named value. If parsing throws a FormatException, recover by setting value to -1 inside the catch. After the try/catch, print Value: <value>. Use top-level statements with try/catch.

Input 42 prints: Value: 42
Input xyz prints: Value: -1

Expected Output:

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