Question: c++ Question 5(10pt): Days in a month Write a program that asks the user to enter a year and month(1-12). Then, the program should display
c++

Question 5(10pt): Days in a month Write a program that asks the user to enter a year and month(1-12). Then, the program should display the number of days in that month. If the entered month is not between 1 and 12, then print "Invalid month". Don't forget about leap years! What is a leap year? In general, years divisible by 4 are leap years. For dates after 1582, however, there is a Gregorian correction: years that are divisible by 100 are not leap years but years divisible by 400, are. So, for instance, 1900 was not a leap year but 2000 was. Expected output (bold is user input) Enter a year: 2008 Enter a month: 29 days Extra credit: if you use a switch statement for this question, we will give you 5pt extra credit
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
