diff options
Diffstat (limited to 'Homework4Reece/Homework4Reece/program.cpp')
| -rw-r--r-- | Homework4Reece/Homework4Reece/program.cpp | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/Homework4Reece/Homework4Reece/program.cpp b/Homework4Reece/Homework4Reece/program.cpp new file mode 100644 index 0000000..2c42015 --- /dev/null +++ b/Homework4Reece/Homework4Reece/program.cpp @@ -0,0 +1,59 @@ +//NAME:Reece Warner +//Date:1/30/2024 +//Assignment Homework #4 +//CST 116 + +#include <iostream> +#include "head.h" + + +using std::cout; +using std::cin; +using std::endl; + + + + + + +int main() +{ + + + + + + + + + return 0; +} + + +void print100() +{ + for (int i = 0; i <= 100; i++) + { + cout << i << ","; + } + +} + + +userdateofbirth inputPersonalInfo() +{ + int day; + int month; + int year; + cout << "What month were you born?" << endl; + cin >> month; + cout << "What day were you born?" << endl; + cin >> day; + cout << "What year were you born?" << endl; + cin >> year; + + + + + +} |