diff options
| author | Wyatt <[email protected]> | 2022-09-29 15:55:37 -0700 |
|---|---|---|
| committer | Wyatt <[email protected]> | 2022-09-29 15:55:37 -0700 |
| commit | cc2011bc8a311a74d6762751c657ce1c465550cd (patch) | |
| tree | 37fd5371af2d341026eb5e658fb1241952c09df3 /Ch 5 Debugging Project/cst116-lab0-debugging-flowchart.txt | |
| parent | more readme changes (diff) | |
| download | cst116-lab0-debugging-johnson-main.tar.xz cst116-lab0-debugging-johnson-main.zip | |
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 |