aboutsummaryrefslogtreecommitdiff
path: root/CST116-Ch7-Debugging/CST116-Ch7-Debugging-Psuedo-Code.txt
blob: 6ab6439d7ea194024f83df2e5cb5ca6ef6c33c73 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
set age to 1

print "Enter your age: "
input into age

if age is 1:
	print First Birthday

else if age is 12-19
	print "Teenager"

else if age is less than 12
	print "Child"

else if age is greater than 62
	print "Senior"

else
	print "Adult"