diff options
| author | Kai <[email protected]> | 2022-10-12 16:15:18 -0700 |
|---|---|---|
| committer | Kai <[email protected]> | 2022-10-12 16:15:18 -0700 |
| commit | bcd031a3faff5eb0a24ad39673ec2cb88c9be7fb (patch) | |
| tree | b66e4ba35ebe05be17fd387dad09548fa146d408 /CST116-Ch7-Debugging | |
| parent | fixed problem 2 (diff) | |
| download | cst116-ch7-debugging-cobrakai2-main.tar.xz cst116-ch7-debugging-cobrakai2-main.zip | |
Diffstat (limited to 'CST116-Ch7-Debugging')
| -rw-r--r-- | CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp b/CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp index fbfe92a..f8b05a4 100644 --- a/CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp +++ b/CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp @@ -66,7 +66,7 @@ int main() cout << "Senior" << endl;
// Breakpoint 2
// Put a breakpoint on the following line
- else;
+ else
cout << "Adult" << endl;
return 0;
|