CJCoding With Joseph

Rethrow With Nested Try

Read an integer n. Use a nested try/catch. In the inner try: if n == 0, throw an InvalidOperationException; otherwise print OK: <n>. The inner catch prints inner and then rethrows the same exception with throw;. The outer catch prints outer. Use top-level statements.

Input 5 prints: OK: 5
Input 0 prints:
inner
outer

Expected Output:

OK: 5
Topics:
Exceptions
๐Ÿ“ฅ 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 (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.