aboutsummaryrefslogtreecommitdiff
path: root/CST116-Ch7-Debugging/CST116-CH7-Cyrus-pseudo-code.txt
blob: b84a4e912553469acbbcb831c157f987f8a09b9e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
set int age to be 0;
print "Enter your age: ";
set age to be the input value;

if age is 1, print "First Birthday" and create a new line;

otherwise, if age is greater than or eqal to 12, AND age is less than or equal to 19, print "Teenager" and create a new line;

otherwise, if age is less than 12, print "Child" and create a new line;

otherwise if age is greater than 62, print "Senior" and create a new line;

and if none of the others are true, print "Adult", and create a new line;

end