diff options
| author | Joe Traver <[email protected]> | 2022-10-11 21:52:46 -0700 |
|---|---|---|
| committer | Joe Traver <[email protected]> | 2022-10-11 21:52:46 -0700 |
| commit | 7c38d71bcaf4f15e4cdae1a277941dbeb3cce9c0 (patch) | |
| tree | c623b9391d830019dbad2cd0d149bbc17b7ac4c9 /CST116-Ch8-Debugging/CST116-Ch8-Debugging-Pseudo-Code.txt | |
| parent | Program output txt file (diff) | |
| download | cst116-chapter8-debugging-joetraver30-7c38d71bcaf4f15e4cdae1a277941dbeb3cce9c0.tar.xz cst116-chapter8-debugging-joetraver30-7c38d71bcaf4f15e4cdae1a277941dbeb3cce9c0.zip | |
Added pseudo-code
Diffstat (limited to 'CST116-Ch8-Debugging/CST116-Ch8-Debugging-Pseudo-Code.txt')
| -rw-r--r-- | CST116-Ch8-Debugging/CST116-Ch8-Debugging-Pseudo-Code.txt | 12 |
1 files changed, 12 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..39ed4cf --- /dev/null +++ b/CST116-Ch8-Debugging/CST116-Ch8-Debugging-Pseudo-Code.txt @@ -0,0 +1,12 @@ +int_var + i = 0 + count + +while i < 10 + output i + 1 + +for count = 0 + count < 10 + count + 1 + +output count
\ No newline at end of file |