← Back to Exceptions
Question 668
Catch a Divide By Zero
Catch a Divide By Zero
Read two integersaandb(one per line), then print the result ofa / b. Ifbis0, dividing throws aDivideByZeroException— catch it and print exactlyCannot divide by zero. Use top-level statements withtry/catch. Input10then2prints: 5 Input10then0prints: Cannot divide by zero
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.