CJCoding With Joseph

Rethrow With throw;

Read an integer n. In an inner try, throw a DivideByZeroException when n == 0, otherwise print 100 / n. The inner catch prints Inner: logging error and then rethrows the same exception with a bare throw;. The outer catch (Exception) prints Outer: handled. Use top-level statements with nested try/catch.

Input 4 prints: 25
Input 0 prints:
Inner: logging error
Outer: handled

Expected Output:

25
Topics:
Exceptions
๐Ÿ“ฅ Auto-Input:
4\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.