aboutsummaryrefslogtreecommitdiff
path: root/Ch7 Pseudocode.txt
blob: d7d135794ec9898ff0f32070be38221d3d74c72d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
define age equal to 0

display "Enter your age"
input age

if age is equal to 1
display "First birthday"
else if age is greater then or equal to 12 and age is less than or equal to 19
display "Teenager"
else if age is less than 12 
display "Child"
else if age is greater than 62
display "Senior"
else
display "Adult"