CJCoding With Joseph

Age Group Classifier

Read an integer age and print the person's age group:

- under 13 -> Child
- 13 to 19 -> Teenager
- 20 to 64 -> Adult
- 65 or older -> Senior

For example, given the input 30, the program prints:

Adult

Expected Output:

Adult
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
30
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 (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.