aboutsummaryrefslogtreecommitdiff
path: root/Ch 5 Debugging Project/CST116-Lab0Debugging Project-Preston-Psuedocode.txt
blob: 079301ea69a847bb16421585581d7540703c806a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
start main function

initialize variable money
initialize empty variable raise

print amount of money

print enter raise amount
input raise amount in percentage above 1

while raise is below 1 
	print raise amount must be above 1 
	print enter raise amount
	input raise amount above 1 

calculate money * raise 

print money after raise 

end main function