diff options
| author | CEOofOogaBooga <[email protected]> | 2022-10-12 14:36:38 -0700 |
|---|---|---|
| committer | CEOofOogaBooga <[email protected]> | 2022-10-12 14:36:38 -0700 |
| commit | a1cc10da93bd3587b099921c9b5207ea5138b4a7 (patch) | |
| tree | 09dd38a53c2c976f39b6e0038e5f0f846c4b0fdd | |
| parent | Initial commit (diff) | |
| download | cst116-chapter8-debugging--trinh--a1cc10da93bd3587b099921c9b5207ea5138b4a7.tar.xz cst116-chapter8-debugging--trinh--a1cc10da93bd3587b099921c9b5207ea5138b4a7.zip | |
| -rw-r--r-- | CST116-Ch8-Debugging/CST116 Ch8 Output.txt | 23 | ||||
| -rw-r--r-- | CST116-Ch8-Debugging/CST116 Ch8 Pseudo code.txt | 7 | ||||
| -rw-r--r-- | CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp | 24 |
3 files changed, 48 insertions, 6 deletions
diff --git a/CST116-Ch8-Debugging/CST116 Ch8 Output.txt b/CST116-Ch8-Debugging/CST116 Ch8 Output.txt new file mode 100644 index 0000000..adef292 --- /dev/null +++ b/CST116-Ch8-Debugging/CST116 Ch8 Output.txt @@ -0,0 +1,23 @@ +0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +0 +1 +2 +3 +4 +5 +6 +7 +8 +9 + +C:\Users\furyf\OneDrive\Desktop\Homework\CST Homework\CST116 Ch8\CST116-Ch8-Debugging\x64\Debug\CST116-Ch8-Debugging.exe (process 14156) exited with code 0. +Press any key to close this window . . .
\ No newline at end of file diff --git a/CST116-Ch8-Debugging/CST116 Ch8 Pseudo code.txt b/CST116-Ch8-Debugging/CST116 Ch8 Pseudo code.txt new file mode 100644 index 0000000..06257eb --- /dev/null +++ b/CST116-Ch8-Debugging/CST116 Ch8 Pseudo code.txt @@ -0,0 +1,7 @@ +Under main +set and place i as 0 +set count +while i is less than 10 +output i+1 +when count is equal to 0 and less than 10 +output count+1
\ No newline at end of file diff --git a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp index 53e4a61..70df10d 100644 --- a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp +++ b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp @@ -1,6 +1,8 @@ /********************************************************************
* File: CST116-Ch8-Debugging.cpp
-*
+* Thomas Trinh
+* CST116
+* Ch8 Conditional and Repetition
* General Instructions: Complete each step before proceeding to the
* next.
*
@@ -14,6 +16,7 @@ * 6) Step over the cout statement.
* 7) Why didn't the flow of the program return back to the while
* statement?
+* It didn't return back because it is reading the 2 statements as 2 seperate ones instead of one.
* 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 +27,11 @@ * 1) Run to Breakpoint 1.
* 2) Step into the while loop.
* 3) Why did the cout not execute?
+* It is because of a logic error with the program trying to read if i is less
+* than 0 but it is 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.
@@ -48,7 +54,9 @@ * 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?
+* 10
+* 6) Why was 10 assigned to count?
+* Because of the semicolon cutting the statement off from the cout statement.
* 7) Fix the problem and re-run to verify.
********************************************************************/
#include <iostream>
@@ -62,13 +70,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;
}
|