โ Back to Functions
Question 146
Catch a Runtime Error
Catch a Runtime Error
The functionriskyDividebelow already throws astd::runtime_errorwhenbis 0. Complete thetrySafeDivide(int a, int b)function: - Inside atryblock, callriskyDivide(a, b)and print the result on its own line - In thecatchblock, catch aconst runtime_error&namedeand printe.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.