You are viewing a single comment's thread. Return to all comments →
void process_input(int n) { try { int d = largest_proper_divisor(n); cout << "result=" << d << endl; } catch (const invalid_argument &e) { cout << e.what() << endl; } cout << "returning control flow to caller" << endl; }
Seems like cookies are disabled on this browser, please enable them to open this website
Cpp exception handling
You are viewing a single comment's thread. Return to all comments →
void process_input(int n) { try { int d = largest_proper_divisor(n); cout << "result=" << d << endl; } catch (const invalid_argument &e) { cout << e.what() << endl; } cout << "returning control flow to caller" << endl; }