diff options
| author | Wyatt <[email protected]> | 2022-12-02 11:52:15 -0800 |
|---|---|---|
| committer | Wyatt <[email protected]> | 2022-12-02 11:52:15 -0800 |
| commit | 8b0f3ef4c9ee59171bca220dc9b47a88099fe16a (patch) | |
| tree | 17ec3ef69dbc9fd40c6d267645f54675595548fd /CST116-Ch8-Debugging/cst116-ch8-debugging-psuedocode.txt | |
| parent | Initial commit (diff) | |
| download | cst116-chapter8-debugging-johnson-main.tar.xz cst116-chapter8-debugging-johnson-main.zip | |
Diffstat (limited to 'CST116-Ch8-Debugging/cst116-ch8-debugging-psuedocode.txt')
| -rw-r--r-- | CST116-Ch8-Debugging/cst116-ch8-debugging-psuedocode.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/CST116-Ch8-Debugging/cst116-ch8-debugging-psuedocode.txt b/CST116-Ch8-Debugging/cst116-ch8-debugging-psuedocode.txt new file mode 100644 index 0000000..2502ff4 --- /dev/null +++ b/CST116-Ch8-Debugging/cst116-ch8-debugging-psuedocode.txt @@ -0,0 +1,14 @@ +int i = 0; +int count; + +while i < 10 +{ +output i++ +} + +for count = 0, count < 10, count++ +{ +output count; +} + +return 0;
\ No newline at end of file |