blob: 257d12be7149c51a7b93b240509b273fd7de6598 (
plain) (
blame)
1
2
3
4
5
6
|
1. Create the float variable "money" and set its value to 123.45
2. Create the float value "raise"
3. Output how much money the variable "money"
4. Ask the user for the percent raise they wish to set and set their input to the variable "raise"
5. Add the value of "money" * "raise" to the initial value of "money"
6. Output the new value of the variable "money"
|