diff options
| -rw-r--r-- | CST116-Ch8-Crombie-pseudo-code.txt | 8 | ||||
| -rw-r--r-- | CST116-Ch8-Crombie.txt | 24 | ||||
| -rw-r--r-- | CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp | 16 |
3 files changed, 44 insertions, 4 deletions
diff --git a/CST116-Ch8-Crombie-pseudo-code.txt b/CST116-Ch8-Crombie-pseudo-code.txt new file mode 100644 index 0000000..c87defa --- /dev/null +++ b/CST116-Ch8-Crombie-pseudo-code.txt @@ -0,0 +1,8 @@ +Set variable i equal to zero +Declare variable count +While i is less than ten + Print i + Add one to the previous value of i and repeat +While count is less than ten + Print count + Add one to the previous value of count and repeat
\ No newline at end of file diff --git a/CST116-Ch8-Crombie.txt b/CST116-Ch8-Crombie.txt new file mode 100644 index 0000000..a79baa7 --- /dev/null +++ b/CST116-Ch8-Crombie.txt @@ -0,0 +1,24 @@ +0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +0 +1 +2 +3 +4 +5 +6 +7 +8 +9 + +C:\Users\JonCr\Source\Repos\cst116-chapter8-debugging-CognitiveShadow\CST116-Ch8-Debugging\x64\Debug\CST116-Ch8-Debugging.exe (process 18916) exited with code 0. +Press any key to close this window . . . + diff --git a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp index 53e4a61..f305a78 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?
+* A) The while statement has a semicolon after it, ending it early.
* 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,6 +25,7 @@ * 1) Run to Breakpoint 1.
* 2) Step into the while loop.
* 3) Why did the cout not execute?
+* A) i is equal to 0, not less than it.
* 4) Check the value of i, now check the condition, does the
* condition evaluate to true?
* 5) Change the "< 0" to a "< 10".
@@ -48,7 +50,9 @@ * 3) Verify that the contents of count is garbage.
* 4) Step into the loop.
* 5) What is the value stored in count now?
+* A) 10
* 6) Where was 10 assigned to count?
+* A) The for loop was ended early by a semicolon
* 7) Fix the problem and re-run to verify.
********************************************************************/
#include <iostream>
@@ -62,13 +66,17 @@ 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;
}
|