aboutsummaryrefslogtreecommitdiff
path: root/Project1/program.cpp
diff options
context:
space:
mode:
authorConnor McDowell <[email protected]>2024-02-09 15:26:30 -0800
committerConnor McDowell <[email protected]>2024-02-09 15:26:30 -0800
commitd92cf0d98bdf7259162234809c422bc2f576a7e7 (patch)
tree5f771ed82378321f0ef5e9fde5bf43e06a127d34 /Project1/program.cpp
parentfiles set up (diff)
downloadhomework-4-connormcdowell275-d92cf0d98bdf7259162234809c422bc2f576a7e7.tar.xz
homework-4-connormcdowell275-d92cf0d98bdf7259162234809c422bc2f576a7e7.zip
created user dob struct and functions
Diffstat (limited to 'Project1/program.cpp')
-rw-r--r--Project1/program.cpp37
1 files changed, 36 insertions, 1 deletions
diff --git a/Project1/program.cpp b/Project1/program.cpp
index 5fff3e6..174cbf2 100644
--- a/Project1/program.cpp
+++ b/Project1/program.cpp
@@ -8,4 +8,39 @@
using std::cout;
using std::cin;
-using std::endl; \ No newline at end of file
+using std::endl;
+
+// user info from lecture
+struct userDoB {
+ int month;
+ int day;
+ int year;
+};
+
+
+void main()
+{
+ userDoB newUser = inputPersonal();
+
+}
+
+void printUser(userDoB newUser)
+{
+ cout << "User's birthday is: " << newUser.month << "/" << newUser.day << "/" << newUser.year << endl;
+}
+
+userDoB inputPersonal()
+{
+ userDoB user = {};
+
+ cout << "\n Please enter just the day you were born as a number: ";
+ cin >> user.day;
+
+ cout << "\n Please enter the month you were born as a number: ";
+ cin >> user.month;
+
+ cout << "\n Now please enter the year you were born as a number: ";
+ cin >> user.month;
+
+ return user;
+}