diff options
| author | DoolyBoi <[email protected]> | 2022-10-12 19:01:29 -0700 |
|---|---|---|
| committer | DoolyBoi <[email protected]> | 2022-10-12 19:01:29 -0700 |
| commit | 19a98d04dbf60f79e94d6305c71bf2ad3d05e5c5 (patch) | |
| tree | 282d61f229597d73d9f5e78a97d75d02a9f3347a /CST116-Ch8-Debugging | |
| parent | Initial commit (diff) | |
| download | cst116-chapter8-debugging-abd00l4h-19a98d04dbf60f79e94d6305c71bf2ad3d05e5c5.tar.xz cst116-chapter8-debugging-abd00l4h-19a98d04dbf60f79e94d6305c71bf2ad3d05e5c5.zip | |
finished all debugging exercises and fixed all errors
Diffstat (limited to 'CST116-Ch8-Debugging')
| -rw-r--r-- | CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp index 53e4a61..2c9e095 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 doesn't have anything within it to run and the statement is intially false so it doesn't even run in the first place
* 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?
+* i = 0 and therefore cannot execute the while loop
* 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,7 +51,9 @@ * 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 loop, if count is less than 10
* 7) Fix the problem and re-run to verify.
********************************************************************/
#include <iostream>
@@ -62,13 +67,16 @@ int main() // Breakpoint 1
// Put a breakpoint on the following line
- while (i < 0);
- cout << i << endl;
-
+ while (i < 10)
+ {
+ cout << i << endl;
+ i++;
+ }
// 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;
}
|