aboutsummaryrefslogtreecommitdiff
path: root/CST116-Ch8-Debugging/cst116-ch8-debugging-psuedocode.txt
diff options
context:
space:
mode:
authorWyatt <[email protected]>2022-12-02 11:52:15 -0800
committerWyatt <[email protected]>2022-12-02 11:52:15 -0800
commit8b0f3ef4c9ee59171bca220dc9b47a88099fe16a (patch)
tree17ec3ef69dbc9fd40c6d267645f54675595548fd /CST116-Ch8-Debugging/cst116-ch8-debugging-psuedocode.txt
parentInitial commit (diff)
downloadcst116-chapter8-debugging-johnson-main.tar.xz
cst116-chapter8-debugging-johnson-main.zip
finished the thing.HEADmain
Diffstat (limited to 'CST116-Ch8-Debugging/cst116-ch8-debugging-psuedocode.txt')
-rw-r--r--CST116-Ch8-Debugging/cst116-ch8-debugging-psuedocode.txt14
1 files changed, 14 insertions, 0 deletions
diff --git a/CST116-Ch8-Debugging/cst116-ch8-debugging-psuedocode.txt b/CST116-Ch8-Debugging/cst116-ch8-debugging-psuedocode.txt
new file mode 100644
index 0000000..2502ff4
--- /dev/null
+++ b/CST116-Ch8-Debugging/cst116-ch8-debugging-psuedocode.txt
@@ -0,0 +1,14 @@
+int i = 0;
+int count;
+
+while i < 10
+{
+output i++
+}
+
+for count = 0, count < 10, count++
+{
+output count;
+}
+
+return 0; \ No newline at end of file