CJCoding With Joseph

Catch a Runtime Error

The function riskyDivide below already throws a std::runtime_error when b is 0.

Complete the trySafeDivide(int a, int b) function:
- Inside a try block, call riskyDivide(a, b) and print the result on its own line
- In the catch block, catch a const runtime_error& named e and print e.what() on its own line

Do NOT write a main function.

Expected Output:

4
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.