aboutsummaryrefslogtreecommitdiff
path: root/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp
diff options
context:
space:
mode:
authorEvan <[email protected]>2022-10-12 20:53:44 -0700
committerEvan <[email protected]>2022-10-12 20:53:44 -0700
commit6017e339125b0dde46f02c135eb6ac4bcf1e6625 (patch)
treec9c049874559341c0ee57bdd51d86b179a953055 /CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp
parentfinished (diff)
downloadcst116-chapter8-debugging-evanmihm-6017e339125b0dde46f02c135eb6ac4bcf1e6625.tar.xz
cst116-chapter8-debugging-evanmihm-6017e339125b0dde46f02c135eb6ac4bcf1e6625.zip
pseudo-codes
Diffstat (limited to 'CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp')
-rw-r--r--CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp
index b674fe1..e92ae8f 100644
--- a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp
+++ b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp
@@ -66,6 +66,15 @@
*
* 7) Fix the problem and re-run to verify.
********************************************************************/
+
+
+//pseudo-codes
+//sets value for i
+//count is going to go from initial and final positions from the value of i
+//while i is less than 10, making i= 0-9
+//program counts from 0 - 9 and spits it into the console window
+
+
#include <iostream>
using std::cout;
using std::endl;