aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cst116-ch8-debugging-wilson-pseudo-code.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/cst116-ch8-debugging-wilson-pseudo-code.txt b/cst116-ch8-debugging-wilson-pseudo-code.txt
new file mode 100644
index 0000000..88bf8a8
--- /dev/null
+++ b/cst116-ch8-debugging-wilson-pseudo-code.txt
@@ -0,0 +1,6 @@
+Set i = 0;
+Set count;
+If i < 10, Display i++; //This displays the current value of i, then adds 1 to that value and saves it for the next loop.//
+When i = 10, While loop = false;
+
+For count, when count < 10, add count++ and display count for that loop; \ No newline at end of file