diff options
| author | Evan <[email protected]> | 2022-10-10 23:59:42 -0700 |
|---|---|---|
| committer | Evan <[email protected]> | 2022-10-10 23:59:42 -0700 |
| commit | f79abefd1b7fe3729ab7bf45f1f7c5af0848bf7d (patch) | |
| tree | 02aea398730fba089f9e125fb79c899f0bd98901 | |
| parent | 2 (diff) | |
| download | cst116-chapter8-debugging-evanmihm-f79abefd1b7fe3729ab7bf45f1f7c5af0848bf7d.tar.xz cst116-chapter8-debugging-evanmihm-f79abefd1b7fe3729ab7bf45f1f7c5af0848bf7d.zip | |
finished
| -rw-r--r-- | CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp index e5244bf..b674fe1 100644 --- a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp +++ b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp @@ -27,8 +27,14 @@ * 1) Run to Breakpoint 1.
* 2) Step into the while loop.
* 3) Why did the cout not execute?
+*
+* We removed the ; in the previous step so the program runs that whole line as one
+*
* 4) Check the value of i, now check the condition, does the
* condition evaluate to true?
+*
+* No
+*
* 5) Change the "< 0" to a "< 10".
* 6) Stop debugging and repeat Steps 1 � 4 to verify the correction
* worked.
@@ -51,7 +57,13 @@ * 3) Verify that the contents of count is garbage.
* 4) Step into the loop.
* 5) What is the value stored in count now?
+*
+* 10
+*
* 6) Where was 10 assigned to count?
+*
+* in the *for (count = 0; count < 10; count++);* statement
+*
* 7) Fix the problem and re-run to verify.
********************************************************************/
#include <iostream>
@@ -65,12 +77,12 @@ 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 < 9; count++);
cout << count << endl;
return 0;
|