CJCoding With Joseph
15per day

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
๐Ÿ“ฅ Auto-Input:
130\n
This input is automatically fed to your program's stdin
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.