aboutsummaryrefslogtreecommitdiff
path: root/Ch 5 Debugging Project/CST115 Chp5 Lab0 Pseudo code.txt
blob: c58e3f6d7aed250b60d44618beb63b05614306c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
under main
create and set money to 123.45F
create and set raise
output "you have $"
output money
output "enter percent raise"
set raise to input
set money to money * (1+raise)
output "after your raise you have $"
output money