blob: 35efba1e9e28302cb21772c8cb00d236a12d993b (
plain) (
blame)
1
2
3
4
5
6
7
|
Display "Enter your age: ";
Read age;
If age = 1, display "First Birthday";
If age >= 12 and age <= 19, display "Teenager";
If age < 12, display "Child";
If age > 62, display "Senior";
Else, display "Adult";
|