aboutsummaryrefslogtreecommitdiff
path: root/Ch 5 Debugging Project/cst116-lab0-debugging-flowchart.txt
diff options
context:
space:
mode:
authorWyatt <[email protected]>2022-09-29 15:55:37 -0700
committerWyatt <[email protected]>2022-09-29 15:55:37 -0700
commitcc2011bc8a311a74d6762751c657ce1c465550cd (patch)
tree37fd5371af2d341026eb5e658fb1241952c09df3 /Ch 5 Debugging Project/cst116-lab0-debugging-flowchart.txt
parentmore readme changes (diff)
downloadcst116-lab0-debugging-johnson-cc2011bc8a311a74d6762751c657ce1c465550cd.tar.xz
cst116-lab0-debugging-johnson-cc2011bc8a311a74d6762751c657ce1c465550cd.zip
Diffstat (limited to 'Ch 5 Debugging Project/cst116-lab0-debugging-flowchart.txt')
-rw-r--r--Ch 5 Debugging Project/cst116-lab0-debugging-flowchart.txt16
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