diff options
| -rw-r--r-- | CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp | 5 | ||||
| -rw-r--r-- | CST116-Ch7-Debugging/x64/Debug/CST116-Ch7-Debugging.exe | bin | 68608 -> 68608 bytes | |||
| -rw-r--r-- | CST116-Ch7-Debugging/x64/Debug/CST116-Ch7-Debugging.ilk | bin | 706312 -> 766056 bytes | |||
| -rw-r--r-- | CST116-Ch7-Debugging/x64/Debug/CST116-Ch7-Debugging.obj | bin | 76311 -> 76313 bytes | |||
| -rw-r--r-- | CST116-Ch7-Debugging/x64/Debug/CST116-Ch7-Debugging.pdb | bin | 1470464 -> 1609728 bytes | |||
| -rw-r--r-- | CST116-Ch7-Debugging/x64/Debug/vc143.idb | bin | 166912 -> 166912 bytes | |||
| -rw-r--r-- | CST116-Ch7-Debugging/x64/Debug/vc143.pdb | bin | 405504 -> 405504 bytes |
7 files changed, 3 insertions, 2 deletions
diff --git a/CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp b/CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp index b97eb32..52619f4 100644 --- a/CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp +++ b/CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp @@ -38,6 +38,7 @@ * 1) Run the program without debugging.
* 2) When prompted, enter the value of 10 for your age.
* 3) Why does the program print both "Child" and "Adult"?
+* The else has a semicolon, thus not running the next line IN the else, but rather running it on its own no matter what
* 4) Re-run the program this time with debugging and run to
* Breakpoint 2.
* 5) Why is the action with the else executing?
@@ -58,7 +59,7 @@ int main() // Put a breakpoint on the following line
if (age == 1)
cout << "First Birthday" << endl;
- else if (age >= 12 || age <= 19)
+ else if (age >= 12 && age <= 19)
cout << "Teenager" << endl;
else if (age < 12)
cout << "Child" << endl;
@@ -66,7 +67,7 @@ int main() cout << "Senior" << endl;
// Breakpoint 2
// Put a breakpoint on the following line
- else;
+ else
cout << "Adult" << endl;
return 0;
diff --git a/CST116-Ch7-Debugging/x64/Debug/CST116-Ch7-Debugging.exe b/CST116-Ch7-Debugging/x64/Debug/CST116-Ch7-Debugging.exe Binary files differindex afab05c..223dd3a 100644 --- a/CST116-Ch7-Debugging/x64/Debug/CST116-Ch7-Debugging.exe +++ b/CST116-Ch7-Debugging/x64/Debug/CST116-Ch7-Debugging.exe diff --git a/CST116-Ch7-Debugging/x64/Debug/CST116-Ch7-Debugging.ilk b/CST116-Ch7-Debugging/x64/Debug/CST116-Ch7-Debugging.ilk Binary files differindex cfa1815..2b85ffe 100644 --- a/CST116-Ch7-Debugging/x64/Debug/CST116-Ch7-Debugging.ilk +++ b/CST116-Ch7-Debugging/x64/Debug/CST116-Ch7-Debugging.ilk diff --git a/CST116-Ch7-Debugging/x64/Debug/CST116-Ch7-Debugging.obj b/CST116-Ch7-Debugging/x64/Debug/CST116-Ch7-Debugging.obj Binary files differindex 755e060..71b32d8 100644 --- a/CST116-Ch7-Debugging/x64/Debug/CST116-Ch7-Debugging.obj +++ b/CST116-Ch7-Debugging/x64/Debug/CST116-Ch7-Debugging.obj diff --git a/CST116-Ch7-Debugging/x64/Debug/CST116-Ch7-Debugging.pdb b/CST116-Ch7-Debugging/x64/Debug/CST116-Ch7-Debugging.pdb Binary files differindex ea61d89..8023b84 100644 --- a/CST116-Ch7-Debugging/x64/Debug/CST116-Ch7-Debugging.pdb +++ b/CST116-Ch7-Debugging/x64/Debug/CST116-Ch7-Debugging.pdb diff --git a/CST116-Ch7-Debugging/x64/Debug/vc143.idb b/CST116-Ch7-Debugging/x64/Debug/vc143.idb Binary files differindex d4e4ec2..181d232 100644 --- a/CST116-Ch7-Debugging/x64/Debug/vc143.idb +++ b/CST116-Ch7-Debugging/x64/Debug/vc143.idb diff --git a/CST116-Ch7-Debugging/x64/Debug/vc143.pdb b/CST116-Ch7-Debugging/x64/Debug/vc143.pdb Binary files differindex adeedf7..f9329d3 100644 --- a/CST116-Ch7-Debugging/x64/Debug/vc143.pdb +++ b/CST116-Ch7-Debugging/x64/Debug/vc143.pdb |