aboutsummaryrefslogtreecommitdiff
path: root/cst116-Ch.5-Pearse-Pseudocode.txt
blob: 1898a3d8eca122a71df14483852da491d38bac43 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
main(){
	float money
	float raise

	print("You have $" + money)

	print("enter PERCENT raise.")
	input(raise)

	money = money * (raise * .01 + 1)
	
	print("You will have $" + money)
}