aboutsummaryrefslogtreecommitdiff
path: root/CST116-Ch8-Debugging
diff options
context:
space:
mode:
authorMorgan Cyrus <[email protected]>2022-10-12 21:17:21 -0700
committerMorgan Cyrus <[email protected]>2022-10-12 21:17:21 -0700
commit855fd045e8a1fd76ef7e65ae5806b4e213a592b0 (patch)
treeaaec350089f053a9058ab3fbb5196de9cdbc53ae /CST116-Ch8-Debugging
parentFixed while look in Exercise 1 (diff)
downloadcst116-chapter8-cyrus-855fd045e8a1fd76ef7e65ae5806b4e213a592b0.tar.xz
cst116-chapter8-cyrus-855fd045e8a1fd76ef7e65ae5806b4e213a592b0.zip
Exercise 2 completed.
Diffstat (limited to 'CST116-Ch8-Debugging')
-rw-r--r--CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp4
-rw-r--r--CST116-Ch8-Debugging/enc_temp_folder/155517e132a7b3f65e42cd8972d9e31/CST116-Ch8-Debugging.cpp100
-rw-r--r--CST116-Ch8-Debugging/enc_temp_folder/a959886991d01a5f6182fffaeacb74/CST116-Ch8-Debugging.cpp (renamed from CST116-Ch8-Debugging/enc_temp_folder/d6d2ff976f886a87215c82d34112e438/CST116-Ch8-Debugging.cpp)11
3 files changed, 13 insertions, 102 deletions
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;
}
diff --git a/CST116-Ch8-Debugging/enc_temp_folder/155517e132a7b3f65e42cd8972d9e31/CST116-Ch8-Debugging.cpp b/CST116-Ch8-Debugging/enc_temp_folder/155517e132a7b3f65e42cd8972d9e31/CST116-Ch8-Debugging.cpp
deleted file mode 100644
index 45eee95..0000000
--- a/CST116-Ch8-Debugging/enc_temp_folder/155517e132a7b3f65e42cd8972d9e31/CST116-Ch8-Debugging.cpp
+++ /dev/null
@@ -1,100 +0,0 @@
-/********************************************************************
-* File: CST116-Ch8-Debugging.cpp
-*
-* Morgan Cyrus
-* CST116
-* CH8 Debugging
-*
-* General Instructions: Complete each step before proceeding to the
-* next.
-*
-* Debugging Exercise 1
-*
-* 1) Insert a breakpoint on the lines indicated in the code.
-* done
-*
-* 2) Run to Breakpoint 1.
-* done
-*
-* 3) Place a watch on i.
-* done
-*
-* 4) Execute the while statement by doing a "Step Into".
-* done
-*
-* 5) The execution continues to the cout statement as expected.
-* 6) Step over the cout statement.
-* done
-*
-* 7) Why didn't the flow of the program return back to the while
-* statement?
-* there is a ; behind the while statement. Additionally the while says while I is less than 0. Since i == 0, the while loop ends (i is 0, not less than 0)
-*
-* 8) Fix this problem by removing the ; after the while statement.
-*
-* 9) Stop debugging and repeat Steps 2 � 5 to verify the correction
-* worked.
-* 10) Stop debugging.
-*
-*/
-
-/*
-* Debugging Exercise 2
-*
-* 1) Run to Breakpoint 1.
-* 2) Step into the while loop.
-* 3) Why did the cout not execute?
-* 4) Check the value of i, now check the condition, does the
-* condition evaluate to true?
-* 5) Change the "< 0" to a "< 10".
-* 6) Stop debugging and repeat Steps 1 � 4 to verify the correction
-* worked.
-* 7) Stop debugging.
-*/
-
-/*
-* Debugging Exercise 3
-*
-* 1) Run the program without debugging.
-* 2) What is happening now is an infinite loop.
-* 3) End your program by holding down the Ctrl key and pressing C.
-* 4) Fix the problem by adding a "++" after the i in the cout
-* statement.
-* 5) Run the program to Breakpoint 2 and verify that the output
-* displayed on the screen is 0 � 9.
-*/
-
-/*
-* Debugging Exercise 4
-*
-* 1) Run to Breakpoint 2.
-* 2) Add a watch to the variable count.
-* 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?
-* 7) Fix the problem and re-run to verify.
-********************************************************************/
-#include <iostream>
-using std::cout;
-using std::endl;
-
-int main()
-{
- int i = 0;
- int count;
-
- // Breakpoint 1
- // Put a breakpoint on the following line
- while (i <= 0)
- {
- cout << i << endl;
- }
-
- // Breakpoint 2
- // Put a breakpoint on the following line
- for (count = 0; count < 10; count++);
- cout << count << endl;
-
- return 0;
-}
diff --git a/CST116-Ch8-Debugging/enc_temp_folder/d6d2ff976f886a87215c82d34112e438/CST116-Ch8-Debugging.cpp b/CST116-Ch8-Debugging/enc_temp_folder/a959886991d01a5f6182fffaeacb74/CST116-Ch8-Debugging.cpp
index 34f9157..bcef1c9 100644
--- a/CST116-Ch8-Debugging/enc_temp_folder/d6d2ff976f886a87215c82d34112e438/CST116-Ch8-Debugging.cpp
+++ b/CST116-Ch8-Debugging/enc_temp_folder/a959886991d01a5f6182fffaeacb74/CST116-Ch8-Debugging.cpp
@@ -36,6 +36,13 @@
* 9) Stop debugging and repeat Steps 2 � 5 to verify the correction
* worked.
* done
+* set the while loop to:
+* while (i <= 0)
+ {
+ cout << i << endl;
+ }
+
+* This resolves the issue and the while loop executes.
*
* 10) Stop debugging.
*
@@ -52,6 +59,8 @@
* 5) Change the "< 0" to a "< 10".
* 6) Stop debugging and repeat Steps 1 � 4 to verify the correction
* worked.
+* done
+*
* 7) Stop debugging.
*/
@@ -89,7 +98,7 @@ int main()
// Breakpoint 1
// Put a breakpoint on the following line
- while (i <= 0)
+ while (i < 10)
{
cout << i << endl;
}