diff options
| author | alexandra-apetroaei <andra@MSI> | 2022-10-11 13:39:10 -0800 |
|---|---|---|
| committer | alexandra-apetroaei <andra@MSI> | 2022-10-11 13:39:10 -0800 |
| commit | 484478da33223a90247f0de73a0a2280b3d5b374 (patch) | |
| tree | 9461fbebef8779009c84e271616d5e2e1629b87e | |
| parent | Just started (diff) | |
| download | cst116-chapter8-debugging-alexandra-apetroaei-484478da33223a90247f0de73a0a2280b3d5b374.tar.xz cst116-chapter8-debugging-alexandra-apetroaei-484478da33223a90247f0de73a0a2280b3d5b374.zip | |
change
| -rw-r--r-- | CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp index 53e4a61..491073a 100644 --- a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp +++ b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp @@ -14,6 +14,7 @@ * 6) Step over the cout statement.
* 7) Why didn't the flow of the program return back to the while
* statement?
+* // Because the semicolon was ending the command which forced the command to run to the for statement
* 8) Fix this problem by removing the ; after the while statement.
* 9) Stop debugging and repeat Steps 2 � 5 to verify the correction
* worked.
@@ -24,8 +25,10 @@ * 1) Run to Breakpoint 1.
* 2) Step into the while loop.
* 3) Why did the cout not execute?
+* // Did not execute because 0 is undefined.
* 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.
@@ -48,6 +51,7 @@ * 3) Verify that the contents of count is garbage.
* 4) Step into the loop.
* 5) What is the value stored in count now?
+* // count-700
* 6) Where was 10 assigned to count?
* 7) Fix the problem and re-run to verify.
********************************************************************/
@@ -62,12 +66,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 < 10; count++)
cout << count << endl;
return 0;
|