From 6d8dc2a339c1e2bc70fc5555bf2b9407522e14a0 Mon Sep 17 00:00:00 2001 From: "smithbenjamin2022@gmail.com" Date: Wed, 12 Oct 2022 14:32:02 -0700 Subject: Final Psuh --- CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 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 53e4a61..2059456 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? +* The while statement had a semicolon, thus ending its loop, before the next line of code began * 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? +* It only outputs when i is less than 0, but it starts as 0 * 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. @@ -40,15 +43,15 @@ * statement. * 5) Run the program to Breakpoint 2 and verify that the output * displayed on the screen is 0 – 9. -* +* * Debugging Exercise 4 -* * 1) Run to Breakpoint 2. * 2) Add a watch to the variable count. * 3) Verify that the contents of count is garbage. * 4) Step into the loop. * 5) What is the value stored in count now? * 6) Where was 10 assigned to count? +* It was assigned in the for loop, but the for loop had a semicolon, thus executing the loop seperate from the next line * 7) Fix the problem and re-run to verify. ********************************************************************/ #include @@ -62,13 +65,13 @@ 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++); - cout << count << endl; + for (count = 0; count < 10; count++) + cout << count << endl; return 0; } -- cgit v1.2.3