โ Back to User Input
Question 137
Validate Age with Exception
Validate Age with Exception
Write a method validateAge(int age) that throws InvalidAgeException if age is less than 0 or greater than 120. In main, read an age and print "Valid" or "Invalid". Do not print inside validateAge. Use try-catch to handle the exception.
Expected Output:
Invalid
Topics:
User Input
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.