aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWyatt <[email protected]>2022-12-02 11:52:15 -0800
committerWyatt <[email protected]>2022-12-02 11:52:15 -0800
commit8b0f3ef4c9ee59171bca220dc9b47a88099fe16a (patch)
tree17ec3ef69dbc9fd40c6d267645f54675595548fd
parentInitial commit (diff)
downloadcst116-chapter8-debugging-johnson-main.tar.xz
cst116-chapter8-debugging-johnson-main.zip
finished the thing.HEADmain
-rw-r--r--CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp10
-rw-r--r--CST116-Ch8-Debugging/cst116-ch8-debugging-output.txt24
-rw-r--r--CST116-Ch8-Debugging/cst116-ch8-debugging-psuedocode.txt14
3 files changed, 45 insertions, 3 deletions
diff --git a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp
index 53e4a61..0fd344d 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 ended with a ;
* 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?
+* i == 0, the while will only loop while i < 0, i being zero is not i being less than zero.
* 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?
+* 10
* 6) Where was 10 assigned to count?
+* in the count++ part of the for loop, the loop has a ; at the end and thus isnt doing anything.
* 7) Fix the problem and re-run to verify.
********************************************************************/
#include <iostream>
@@ -62,12 +66,12 @@ 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++);
+ for (count = 0; count < 10; count++)
cout << count << endl;
return 0;
diff --git a/CST116-Ch8-Debugging/cst116-ch8-debugging-output.txt b/CST116-Ch8-Debugging/cst116-ch8-debugging-output.txt
new file mode 100644
index 0000000..3a056ce
--- /dev/null
+++ b/CST116-Ch8-Debugging/cst116-ch8-debugging-output.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\wythe\Desktop\Homework\C++\cst116-chapter8-debugging-johnson\CST116-Ch8-Debugging\x64\Debug\CST116-Ch8-Debugging.exe (process 15744) exited with code 0.
+To automatically close the console when debugging stops, enable Tools->Options->Debugging->Automatically close the console when debugging stops.
+Press any key to close this window . . . \ No newline at end of file
diff --git a/CST116-Ch8-Debugging/cst116-ch8-debugging-psuedocode.txt b/CST116-Ch8-Debugging/cst116-ch8-debugging-psuedocode.txt
new file mode 100644
index 0000000..2502ff4
--- /dev/null
+++ b/CST116-Ch8-Debugging/cst116-ch8-debugging-psuedocode.txt
@@ -0,0 +1,14 @@
+int i = 0;
+int count;
+
+while i < 10
+{
+output i++
+}
+
+for count = 0, count < 10, count++
+{
+output count;
+}
+
+return 0; \ No newline at end of file