From f79abefd1b7fe3729ab7bf45f1f7c5af0848bf7d Mon Sep 17 00:00:00 2001 From: Evan Date: Mon, 10 Oct 2022 23:59:42 -0700 Subject: finished --- CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) (limited to 'CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp') 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 @@ -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; -- cgit v1.2.3