diff options
| author | [email protected] <[email protected]> | 2022-10-12 14:13:12 -0700 |
|---|---|---|
| committer | [email protected] <[email protected]> | 2022-10-12 14:13:12 -0700 |
| commit | 34f87c0c20f53facad8374e1aabee17a3ef3bf18 (patch) | |
| tree | ae308914fbf8d5fb40788d0ac49219e29a4a492a /CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp | |
| parent | Test 2 (diff) | |
| download | cst116-ch7-debugging-smith-benjamin-34f87c0c20f53facad8374e1aabee17a3ef3bf18.tar.xz cst116-ch7-debugging-smith-benjamin-34f87c0c20f53facad8374e1aabee17a3ef3bf18.zip | |
Final Test
Diffstat (limited to 'CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp')
| -rw-r--r-- | CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp | 5 |
1 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;
|