diff options
| -rw-r--r-- | CST116-Ch8-Debugging/CH8-Debugging-Output_Crawford.txt | 24 | ||||
| -rw-r--r-- | CST116-Ch8-Debugging/CH8-Debugging-Pseudocode-Crawford.txt (renamed from CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp) | 156 | ||||
| -rw-r--r-- | CST116-Ch8-Debugging/CST116-Ch8-Debugging-Crawford.cpp | 82 | ||||
| -rw-r--r-- | CST116-Ch8-Debugging/CST116-Ch8-Debugging.vcxproj | 3 | ||||
| -rw-r--r-- | CST116-Ch8-Debugging/CST116-Ch8-Debugging.vcxproj.filters | 2 |
5 files changed, 191 insertions, 76 deletions
diff --git a/CST116-Ch8-Debugging/CH8-Debugging-Output_Crawford.txt b/CST116-Ch8-Debugging/CH8-Debugging-Output_Crawford.txt new file mode 100644 index 0000000..4c4399a --- /dev/null +++ b/CST116-Ch8-Debugging/CH8-Debugging-Output_Crawford.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\Lloyd Crawford\source\repos\cst116-chapter8-debugging-19-Ruin\CST116-Ch8-Debugging\x64\Debug\CST116-Ch8-Debugging-Crawford.exe (process 10448) 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 . . . diff --git a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp b/CST116-Ch8-Debugging/CH8-Debugging-Pseudocode-Crawford.txt index 53e4a61..6e30706 100644 --- a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp +++ b/CST116-Ch8-Debugging/CH8-Debugging-Pseudocode-Crawford.txt @@ -1,74 +1,82 @@ -/********************************************************************
-* File: CST116-Ch8-Debugging.cpp
-*
-* General Instructions: Complete each step before proceeding to the
-* next.
-*
-* Debugging Exercise 1
-*
-* 1) Insert a breakpoint on the lines indicated in the code.
-* 2) Run to Breakpoint 1.
-* 3) Place a watch on i.
-* 4) Execute the while statement by doing a "Step Into".
-* 5) The execution continues to the cout statement as expected.
-* 6) Step over the cout statement.
-* 7) Why didn't the flow of the program return back to the while
-* statement?
-* 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;
-}
+/******************************************************************** +* File: CST116-Ch8-Debugging.cpp +* Lloyd Crawford, CST 116 02, CH 8 Debugging, IDE, Simple Program, Github +* General Instructions: Complete each step before proceeding to the +* next. +* +* Debugging Exercise 1 +* +* 1) Insert a breakpoint on the lines indicated in the code. +* 2) Run to Breakpoint 1. +* 3) Place a watch on i. +* 4) Execute the while statement by doing a "Step Into". +* 5) The execution continues to the cout statement as expected. +* 6) Step over the cout statement. +* 7) Why didn't the flow of the program return back to the while +* statement? +* 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? 0 +* 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 < 10) + cout << i++ << endl; + + // Breakpoint 2 + // Put a breakpoint on the following line + for (count = 0; count < 10; count++) + cout << count << endl; + + return 0; +} + +// For part 1 I inserted the breakpoints into the program. Then started diagnostics. What was found was +// line 65 while (i < 0);, the semicolen kept the program from looping back to the while statement after cout. +//Removing the semicolen fixed the issue. For Part 2 I found that the Cout statement wouldnt execute as it had no value to execute. +// By changing the 0 to a 10 it would execute a loop until it ran to that number. +// Part 3 Showed after the current fixes that the program would run an infinite loop. By placing ++ after i on line 66 +// it fixed the issue and the code would run from 0 - 10. Not like the instructions said, but a step there. +// For part 4 I removed the end semicolen on line 70 causing the count to properly be 0-9. I feel the issues are resolved.
\ No newline at end of file diff --git a/CST116-Ch8-Debugging/CST116-Ch8-Debugging-Crawford.cpp b/CST116-Ch8-Debugging/CST116-Ch8-Debugging-Crawford.cpp new file mode 100644 index 0000000..aa86e30 --- /dev/null +++ b/CST116-Ch8-Debugging/CST116-Ch8-Debugging-Crawford.cpp @@ -0,0 +1,82 @@ +/******************************************************************** +* File: CST116-Ch8-Debugging.cpp +* Lloyd Crawford, CST 116 02, CH 8 Debugging, IDE, Simple Program, Github +* General Instructions: Complete each step before proceeding to the +* next. +* +* Debugging Exercise 1 +* +* 1) Insert a breakpoint on the lines indicated in the code. +* 2) Run to Breakpoint 1. +* 3) Place a watch on i. +* 4) Execute the while statement by doing a "Step Into". +* 5) The execution continues to the cout statement as expected. +* 6) Step over the cout statement. +* 7) Why didn't the flow of the program return back to the while +* statement? +* 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? 0 +* 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 < 10) + cout << i++ << endl; + + // Breakpoint 2 + // Put a breakpoint on the following line + for (count = 0; count < 10; count++) + cout << count << endl; + + return 0; +} + +// For part 1 I inserted the breakpoints into the program. Then started diagnostics. What was found was +// line 65 while (i < 0);, the semicolen kept the program from looping back to the while statement after cout. +//Removing the semicolen fixed the issue. For Part 2 I found that the Cout statement wouldnt execute as it had no value to execute. +// By changing the 0 to a 10 it would execute a loop until it ran to that number. +// Part 3 Showed after the current fixes that the program would run an infinite loop. By placing ++ after i on line 66 +// it fixed the issue and the code would run from 0 - 10. Not like the instructions said, but a step there. +// For part 4 I removed the end semicolen on line 70 causing the count to properly be 0-9. I feel the issues are resolved. diff --git a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.vcxproj b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.vcxproj index b7c71c7..e696845 100644 --- a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.vcxproj +++ b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.vcxproj @@ -24,6 +24,7 @@ <ProjectGuid>{15fb2850-7b95-4328-9080-89f6cea8e210}</ProjectGuid>
<RootNamespace>CST116Ch8Debugging</RootNamespace>
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
+ <ProjectName>CST116-Ch8-Debugging-Crawford</ProjectName>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
@@ -127,7 +128,7 @@ </Link>
</ItemDefinitionGroup>
<ItemGroup>
- <ClCompile Include="CST116-Ch8-Debugging.cpp" />
+ <ClCompile Include="CST116-Ch8-Debugging-Crawford.cpp" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
diff --git a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.vcxproj.filters b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.vcxproj.filters index 3af9a09..b7e28b6 100644 --- a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.vcxproj.filters +++ b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.vcxproj.filters @@ -15,7 +15,7 @@ </Filter>
</ItemGroup>
<ItemGroup>
- <ClCompile Include="CST116-Ch8-Debugging.cpp">
+ <ClCompile Include="CST116-Ch8-Debugging-Crawford.cpp">
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>
|