aboutsummaryrefslogtreecommitdiff
path: root/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp
diff options
context:
space:
mode:
authorHannah Wu <[email protected]>2022-10-12 02:12:07 -0700
committerHannah Wu <[email protected]>2022-10-12 02:12:07 -0700
commitb8ad331735d114f593a285741a55ffc66c5659fd (patch)
tree14545d96403df8779f4ab98cd62541ed26aa3109 /CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp
parentAdded pseudocode file. Added output file. Updated main file. (diff)
downloadcst116-chapter8-debugging-wu-b8ad331735d114f593a285741a55ffc66c5659fd.tar.xz
cst116-chapter8-debugging-wu-b8ad331735d114f593a285741a55ffc66c5659fd.zip
Implemented changes to main file.HEADmain
Diffstat (limited to 'CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp')
-rw-r--r--CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp
index 53e4a61..e38c270 100644
--- a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp
+++ b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp
@@ -62,13 +62,14 @@ int main()
// Breakpoint 1
// Put a breakpoint on the following line
- while (i < 0);
- cout << i << endl;
+
+ while (i < 10)
+ cout << i++ << endl;
// Breakpoint 2
// Put a breakpoint on the following line
- for (count = 0; count < 10; count++);
+ for (count = 0; count < 10; count++) {
cout << count << endl;
-
+}
return 0;
}