โ Back to Functions
Question 145
Throw on Division by Zero
Throw on Division by Zero
Complete thesafeDividefunction below. Ifbis 0, throw astd::runtime_errorwith the message"Division by zero". Otherwise, return the integer result ofa / b. Do NOT write a main function.
Expected Output:
5
Topics:
FunctionsExceptions
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.