โ Back to Functions
Question 147
Validate Age with Exception
Validate Age with Exception
Complete thevalidateAge(int age)function. - Ifageis less than 0, throw astd::invalid_argumentwith the message"Age cannot be negative"- Ifageis greater than 150, throw astd::invalid_argumentwith the message"Age is unrealistic"- Otherwise, return age Do NOT write a main function.
Expected Output:
25
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.