From 8b0f3ef4c9ee59171bca220dc9b47a88099fe16a Mon Sep 17 00:00:00 2001 From: Wyatt Date: Fri, 2 Dec 2022 11:52:15 -0800 Subject: finished the thing. --- CST116-Ch8-Debugging/cst116-ch8-debugging-psuedocode.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 CST116-Ch8-Debugging/cst116-ch8-debugging-psuedocode.txt (limited to 'CST116-Ch8-Debugging/cst116-ch8-debugging-psuedocode.txt') 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 -- cgit v1.2.3