diff options
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 |