โ Back to Exceptions
Question 675
Catch the Base ArithmeticException
Catch the Base ArithmeticException
Read two integers and printa / b.DivideByZeroExceptionderives fromArithmeticException, so a broadercatch (ArithmeticException)will still catch a divide-by-zero. Print exactlyMath errorwhen it happens. Use top-level statements withtry/catch. Input8then2prints: 4 Input8then0prints: Math error
Expected Output:
4
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.