Question: This is a C++ problem. Please give full explanations and code in details. Thanks. 2). What is Tomorrow's Date? Extend your main program from Stretch

This is a C++ problem. Please give full explanations and code in details. Thanks.
2). What is Tomorrow's Date? Extend your main program from Stretch Exercise (1) to accomplish the following: Input the month, day, and year values as 3 separate integers. Determine and output the date for the next calendar day (use the last Day function as needed). Include a continuation loop that will continue this process as long as the user wishes. Examples: enter a date as mm dd yyyy: 2 28 2014 next day is: 3 1 2014 continue? (y/n): y enter a date as mm dd yyyy: 2 28 2000 next day is: 2 29 2000 continue? (y/n): y enter a date as mm dd yyyy: 2 28 1900 next day is: 3 1 1900 continue? (y/n): y enter a date as mm dd yyyy: 12 31 2014 next day is: 1 1 2015 continue? (y/n): n
Step by Step Solution
There are 3 Steps involved in it
Answer and step by step explanation include int main int month day year char answer do stdcout Enter ... View full answer
Get step-by-step solutions from verified subject matter experts
