diff options
Diffstat (limited to 'cst116-Ch8-Pearse-Pseudocode.txt')
| -rw-r--r-- | cst116-Ch8-Pearse-Pseudocode.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/cst116-Ch8-Pearse-Pseudocode.txt b/cst116-Ch8-Pearse-Pseudocode.txt new file mode 100644 index 0000000..3d6534a --- /dev/null +++ b/cst116-Ch8-Pearse-Pseudocode.txt @@ -0,0 +1,12 @@ +main(){ + int i = 0 + int count + + while (i < 10) { + print(i) + i++ + } + for (count = 0; count < 10; count++){ + print(count) + } +}
\ No newline at end of file |