From 34f87c0c20f53facad8374e1aabee17a3ef3bf18 Mon Sep 17 00:00:00 2001 From: "smithbenjamin2022@gmail.com" Date: Wed, 12 Oct 2022 14:13:12 -0700 Subject: Final Test --- CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp | 5 +++-- .../x64/Debug/CST116-Ch7-Debugging.exe | Bin 68608 -> 68608 bytes .../x64/Debug/CST116-Ch7-Debugging.ilk | Bin 706312 -> 766056 bytes .../x64/Debug/CST116-Ch7-Debugging.obj | Bin 76311 -> 76313 bytes .../x64/Debug/CST116-Ch7-Debugging.pdb | Bin 1470464 -> 1609728 bytes CST116-Ch7-Debugging/x64/Debug/vc143.idb | Bin 166912 -> 166912 bytes CST116-Ch7-Debugging/x64/Debug/vc143.pdb | Bin 405504 -> 405504 bytes 7 files changed, 3 insertions(+), 2 deletions(-) (limited to 'CST116-Ch7-Debugging') 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 index afab05c..223dd3a 100644 Binary files a/CST116-Ch7-Debugging/x64/Debug/CST116-Ch7-Debugging.exe and b/CST116-Ch7-Debugging/x64/Debug/CST116-Ch7-Debugging.exe differ diff --git a/CST116-Ch7-Debugging/x64/Debug/CST116-Ch7-Debugging.ilk b/CST116-Ch7-Debugging/x64/Debug/CST116-Ch7-Debugging.ilk index cfa1815..2b85ffe 100644 Binary files a/CST116-Ch7-Debugging/x64/Debug/CST116-Ch7-Debugging.ilk and b/CST116-Ch7-Debugging/x64/Debug/CST116-Ch7-Debugging.ilk differ diff --git a/CST116-Ch7-Debugging/x64/Debug/CST116-Ch7-Debugging.obj b/CST116-Ch7-Debugging/x64/Debug/CST116-Ch7-Debugging.obj index 755e060..71b32d8 100644 Binary files a/CST116-Ch7-Debugging/x64/Debug/CST116-Ch7-Debugging.obj and b/CST116-Ch7-Debugging/x64/Debug/CST116-Ch7-Debugging.obj differ diff --git a/CST116-Ch7-Debugging/x64/Debug/CST116-Ch7-Debugging.pdb b/CST116-Ch7-Debugging/x64/Debug/CST116-Ch7-Debugging.pdb index ea61d89..8023b84 100644 Binary files a/CST116-Ch7-Debugging/x64/Debug/CST116-Ch7-Debugging.pdb and b/CST116-Ch7-Debugging/x64/Debug/CST116-Ch7-Debugging.pdb differ diff --git a/CST116-Ch7-Debugging/x64/Debug/vc143.idb b/CST116-Ch7-Debugging/x64/Debug/vc143.idb index d4e4ec2..181d232 100644 Binary files a/CST116-Ch7-Debugging/x64/Debug/vc143.idb and b/CST116-Ch7-Debugging/x64/Debug/vc143.idb differ diff --git a/CST116-Ch7-Debugging/x64/Debug/vc143.pdb b/CST116-Ch7-Debugging/x64/Debug/vc143.pdb index adeedf7..f9329d3 100644 Binary files a/CST116-Ch7-Debugging/x64/Debug/vc143.pdb and b/CST116-Ch7-Debugging/x64/Debug/vc143.pdb differ -- cgit v1.2.3