diff options
| author | Evan <[email protected]> | 2022-10-11 20:07:47 -0700 |
|---|---|---|
| committer | Evan <[email protected]> | 2022-10-11 20:07:47 -0700 |
| commit | eb2d3413dcc9bebe412c7b4b9370c04fe12d0610 (patch) | |
| tree | 6d645f6918a4903ed68676391d0679e8d2ce1377 /CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp | |
| parent | anwsers (diff) | |
| download | cst116-ch7-debugging-evanmihm-eb2d3413dcc9bebe412c7b4b9370c04fe12d0610.tar.xz cst116-ch7-debugging-evanmihm-eb2d3413dcc9bebe412c7b4b9370c04fe12d0610.zip | |
pseudo-codes
Diffstat (limited to 'CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp')
| -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;
|