C++ Program Create a program that will prompt me for each of the following items: 1. Date of Birth 2. Typical wake up time 3. Next Dentist Appointment. ( Date and Time) Create a Date structure and a method to load and return the date structure. Create a Time-of-day structure and a method to load and return the Time-of-day structure. Create a DateTime structure that includes the Date and Time-Of-Day structure. The Date structure should include year, month, day. The Time-of-day structure should include hour and minute. Use these structures and apply them to the processing of the input of the 3 items listed above. Display the structured data for each of the 3 listed data items. Avoid redundancy where possible ( In other words, avoid duplicated code and write method(s) as needed to avoid duplication). This primarily applies to the processing of item 3.
C++
Create a program that will prompt me for each of the following items:
1. Date of Birth
2. Typical wake up time
3. Next Dentist Appointment. ( Date and Time)
Create a Date structure and a method to load and return the date structure. Create a Time-of-day structure and a method to load and return the Time-of-day structure. Create a DateTime structure that includes the Date and Time-Of-Day structure.
The Date structure should include year, month, day. The Time-of-day structure should include hour and minute.
Use these structures and apply them to the processing of the input of the 3 items listed above. Display the structured data for each of the 3 listed data items.
Avoid redundancy where possible ( In other words, avoid duplicated code and write method(s) as needed to avoid duplication). This primarily applies to the processing of item 3.

Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images









