โ Back to Exceptions
Question 685
Nested Try/Catch
Nested Try/Catch
Read an integern. Inside an innertry, print10 / n; its catch handlesDivideByZeroExceptionby printingInner caught division error. The outertrywraps the parsing and catchesFormatExceptionby printingOuter caught format error. Use top-level statements with nestedtry/catch. Input2prints: 5 Input0prints: Inner caught division error Inputxprints: Outer caught format error
Expected Output:
5
Topics:
Exceptions
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.