From 855fd045e8a1fd76ef7e65ae5806b4e213a592b0 Mon Sep 17 00:00:00 2001 From: Morgan Cyrus Date: Wed, 12 Oct 2022 21:17:21 -0700 Subject: Exercise 2 completed. --- CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (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 bfab1d6..a1bcfe5 100644 --- a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp +++ b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp @@ -59,6 +59,8 @@ * 5) Change the "< 0" to a "< 10". * 6) Stop debugging and repeat Steps 1 – 4 to verify the correction * worked. +* done, this also worked. +* * 7) Stop debugging. */ @@ -96,7 +98,7 @@ int main() // Breakpoint 1 // Put a breakpoint on the following line - while (i <= 0) + while (i < 10) { cout << i << endl; } -- cgit v1.2.3