CJCoding With Joseph

Catch the Base ArithmeticException

Read two integers and print a / b. DivideByZeroException derives from ArithmeticException, so a broader catch (ArithmeticException) will still catch a divide-by-zero. Print exactly Math error when it happens. Use top-level statements with try/catch.

Input 8 then 2 prints: 4
Input 8 then 0 prints: Math error

Expected Output:

4
Topics:
Exceptions
๐Ÿ“ฅ Auto-Input:
8\n2\n
This input is automatically fed to your program's stdin
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.