aboutsummaryrefslogtreecommitdiff
path: root/CST116-Ch7-Debugging/CST116 Ch7 pseudo code.txt
blob: 51e49bd0f5c204ef897c5b92b8fc5e30307a9745 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
Under main
set and place age as 0
output "Enter your age: "
input age
if age is equal to 1, output "First Birthday"
if age is less than 12, output "Child"
if age is greater than or equal to 12 
and less than or equal to 19, output "Teenager"
if age is greater than 62, output "Senior"
if age is outside those groups, output "Adult"