โ Back to Exceptions
Question 643
Catch Divide By Zero
Catch Divide By Zero
Read two integersaandb(each on its own line) and printa / b. Ifbis0, catch theDivideByZeroExceptionand printError: cannot divide by zero. Use top-level statements withtry/catch. Input10then2prints: 5 Input10then0prints: Error: 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.