diff options
| -rw-r--r-- | CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp b/CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp index 4b708dd..e9e5811 100644 --- a/CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp +++ b/CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp @@ -54,6 +54,13 @@ * 6) Fix the problem and re-run to verify the problem was corrected.
********************************************************************/
+
+//pseudo-code
+
+//requires user input for a age
+//uses that number and matches it within a certain requirement
+// age=1 or age under 12 or age between 12 and 19 and age above 19 to 62 then finally 62 and above
+
#include <iostream>
using std::cout;
using std::cin;
|