CJCoding With Joseph

Validate Age with Exception

Complete the validateAge(int age) function.

- If age is less than 0, throw a std::invalid_argument with the message "Age cannot be negative"
- If age is greater than 150, throw a std::invalid_argument with 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.