aboutsummaryrefslogtreecommitdiff
path: root/CST116-Ch8-Debugging
diff options
context:
space:
mode:
authorJoe Traver <[email protected]>2022-10-11 21:52:46 -0700
committerJoe Traver <[email protected]>2022-10-11 21:52:46 -0700
commit7c38d71bcaf4f15e4cdae1a277941dbeb3cce9c0 (patch)
treec623b9391d830019dbad2cd0d149bbc17b7ac4c9 /CST116-Ch8-Debugging
parentProgram output txt file (diff)
downloadcst116-chapter8-debugging-joetraver30-7c38d71bcaf4f15e4cdae1a277941dbeb3cce9c0.tar.xz
cst116-chapter8-debugging-joetraver30-7c38d71bcaf4f15e4cdae1a277941dbeb3cce9c0.zip
Added pseudo-code
Diffstat (limited to 'CST116-Ch8-Debugging')
-rw-r--r--CST116-Ch8-Debugging/CST116-Ch8-Debugging-Pseudo-Code.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/CST116-Ch8-Debugging/CST116-Ch8-Debugging-Pseudo-Code.txt b/CST116-Ch8-Debugging/CST116-Ch8-Debugging-Pseudo-Code.txt
new file mode 100644
index 0000000..39ed4cf
--- /dev/null
+++ b/CST116-Ch8-Debugging/CST116-Ch8-Debugging-Pseudo-Code.txt
@@ -0,0 +1,12 @@
+int_var
+ i = 0
+ count
+
+while i < 10
+ output i + 1
+
+for count = 0
+ count < 10
+ count + 1
+
+output count \ No newline at end of file