aboutsummaryrefslogtreecommitdiff
path: root/CST116-Ch8-Debugging
diff options
context:
space:
mode:
authorTaylor Rogers <[email protected]>2022-10-11 08:38:39 -0700
committerTaylor Rogers <[email protected]>2022-10-11 08:38:39 -0700
commit3e2c9d4e4313aa60121e4eac00f5cf5b9623ffba (patch)
tree1202d3d842565cd5959e90fd6b3257c463cf00c2 /CST116-Ch8-Debugging
parentAdded output text file (diff)
downloadcst116-chapter8-debugging-taylorrog-3e2c9d4e4313aa60121e4eac00f5cf5b9623ffba.tar.xz
cst116-chapter8-debugging-taylorrog-3e2c9d4e4313aa60121e4eac00f5cf5b9623ffba.zip
added pseudo code
Diffstat (limited to 'CST116-Ch8-Debugging')
-rw-r--r--CST116-Ch8-Debugging/CST116-Ch8-Debugging-pseudo-code.txt8
1 files changed, 8 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..49a5c6d
--- /dev/null
+++ b/CST116-Ch8-Debugging/CST116-Ch8-Debugging-pseudo-code.txt
@@ -0,0 +1,8 @@
+1. Variable i = 0
+2. While i is less than 10:
+ a. Print i = i + 1
+ b. Repeat until i = 10
+3. Variable count = 0
+4. For count less than 10:
+ a. Print count = count + 1
+ b. Repeat until count = 10 \ No newline at end of file