(Guru please do not post the same solution. I\'m would like to see a different s
ID: 3621288 • Letter: #
Question
(Guru please do not post the same solution. I'm would like to see a different solution in order to get a better understanding of it. Thanks)I'm in an intro to c++ class and we are doing our first lengthy assignment. I've made some progress on the program but I'm having some issues finishing it. Since I'm just in an intro class, I have trouble understanding help that is to complex. Any help would be greatly appreciated. Here is the assignment:
The Days of Our Lives
Write a program to determine the number of days between any two dates from
July 4, 1776 until now. Inclusive. You must ensure that the user enters valid dates.
This means a valid year, a valid month, and a valid day of the month.
Your program should then start at the beginning date (which must not be after
the ending date), and count each day until the ending date.
The program should print out the Month and Year as it counts (NB: not the day).
If you count a February that is in a leap year, note that in the output.
The final output will be two items: the number of days and the number of leap years
between the dates.
Thanks