โ Back to Exceptions
Question 680
Two Catch Blocks
Two Catch Blocks
Read two integers and printa / b. Handle two different failures with two catch blocks: aFormatException(bad number) printsInvalid number, and aDivideByZeroExceptionprintsCannot divide by zero. Use top-level statements withtry/catch. Input20then4prints: 5 Input20then0prints: Cannot divide by zero Inputxthen4prints: Invalid number
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.