diff options
Diffstat (limited to 'Ch 5 Debugging Project/cst116-lab0-debugging-flowchart.txt')
| -rw-r--r-- | Ch 5 Debugging Project/cst116-lab0-debugging-flowchart.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Ch 5 Debugging Project/cst116-lab0-debugging-flowchart.txt b/Ch 5 Debugging Project/cst116-lab0-debugging-flowchart.txt new file mode 100644 index 0000000..dda7d8e --- /dev/null +++ b/Ch 5 Debugging Project/cst116-lab0-debugging-flowchart.txt @@ -0,0 +1,16 @@ +Under main() + +create money and set to 123.45f +create raise + +output current amount of money + +ask user to input requested raise percent + +set raise to user input + +set money to itself * (raise + 1) + +output money + +return 0 |