CJCoding With Joseph

Throw on Division by Zero

Complete the safeDivide function below.

If b is 0, throw a std::runtime_error with the message "Division by zero".
Otherwise, return the integer result of a / 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.