(Combining Class Time and Class Date)Combine the modified Time class of Exercise and the modified Date class of Exercise into one class called DateAndTime. (In Chapter 20, we’ll discuss inheritance, which will enable us to accomplish this task quickly without modifying the existing class definitions.) Modify the tick function to call the nextDay function if the time increments into the next day. Modify functions printStandard and printUniversal to output the date and time. Write a program to test the new class DateAndTime. Specifically, test incrementing the time into the next day.
Exercise
(Enhancing Class Time)Modify the Time class of Figs. 1–2to include a tick member function that increments the time stored in a Time object by one second. Write a program that tests the tick member function in a loop that prints the time in standard format during each iteration of the loop to illustrate that the tick member function works correctly. Be sure to test the following cases:
a) Incrementing into the next minute.
b) Incrementing into the next hour.
c) Incrementing into the next day (i.e., 11:59:59 PM to 12:00:00 AM).
Figure 1 Time class containing a constructor with default arguments.

Figure 2 Time class member-function definitions including a constructor that takes arguments.



We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.