CJCoding With Joseph
15per day

Exception Propagation through Methods

Write two methods:
1. parseValue(String s) — returns Integer.parseInt(s). Let NumberFormatException propagate naturally (do not catch it).
2. process(String s) — calls parseValue(s) and returns the result multiplied by 2. Also does NOT catch the exception.

In main, call process(input) and print the result. If NumberFormatException propagates all the way up, catch it and print "Parse failed".

⚠️ AUTO-INPUT MODE: The input stream will automatically contain '5\n'.

Expected Output:

10
Topics:
Miscellaneous
📥 Auto-Input:
5\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 (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.