diff options
| author | Trevor Bouchillon <[email protected]> | 2022-10-12 16:57:12 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-10-12 16:57:12 -0700 |
| commit | afe895e15efc40263d480f2f410e3f8577a92e78 (patch) | |
| tree | 608e8d9c7c8bfc932351373dcee9e93ca1d543d5 | |
| parent | Txt file added (diff) | |
| download | cst116-chapter8-debugging-daboochillin-main.tar.xz cst116-chapter8-debugging-daboochillin-main.zip | |
| -rw-r--r-- | Pseudocode Ch8.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Pseudocode Ch8.txt b/Pseudocode Ch8.txt new file mode 100644 index 0000000..ef67993 --- /dev/null +++ b/Pseudocode Ch8.txt @@ -0,0 +1,8 @@ +Define i eqaul to 0
+define count
+
+while i is less than 10
+display i and increment it by 1
+
+for count equal to 0, increment count, while count is less than 10
+display count
\ No newline at end of file |