diff options
| author | Morgan Cyrus <[email protected]> | 2022-10-12 21:47:12 -0700 |
|---|---|---|
| committer | Morgan Cyrus <[email protected]> | 2022-10-12 21:47:12 -0700 |
| commit | 7f8c694907454a988311eb122e35c19c0876003e (patch) | |
| tree | 6516b4a6708fcc989c9067e481b8586435be0113 /CST116-Ch8-Debugging/CST116-CH8-Cyrus-pseudo-code.txt | |
| parent | Finished all exercises (diff) | |
| download | cst116-chapter8-cyrus-main.tar.xz cst116-chapter8-cyrus-main.zip | |
Diffstat (limited to 'CST116-Ch8-Debugging/CST116-CH8-Cyrus-pseudo-code.txt')
| -rw-r--r-- | CST116-Ch8-Debugging/CST116-CH8-Cyrus-pseudo-code.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/CST116-Ch8-Debugging/CST116-CH8-Cyrus-pseudo-code.txt b/CST116-Ch8-Debugging/CST116-CH8-Cyrus-pseudo-code.txt new file mode 100644 index 0000000..e80af58 --- /dev/null +++ b/CST116-Ch8-Debugging/CST116-CH8-Cyrus-pseudo-code.txt @@ -0,0 +1,13 @@ +create int i and set to be 0; +create int count; + +while i < 10, print i, increment the value of i by one and create a new line; + +print i and create a new line; + +set count to be 0; +while count is less than 10, print count and create a new line then increment the value of count by 1; + +print count and create a new line; + +end;
\ No newline at end of file |