aboutsummaryrefslogtreecommitdiff
path: root/Ch 5 Debugging Project/CST116-Lab0-Traver-Pseudo-Code
blob: a0d0e523d5f1b2b5642baa67019a95b754a39329 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
print:
	Joe Traver
	CST 116
	Github ID - joetraver30

money = 123.45
	
print:
	"you have $"
output = money

prompt:
	"Enter percent raise"
input = raise

money = money * raise

print:
	"After your raise you have $"
	output = money