Question: Please code in C++. Write a class of objects named Date that remembers information about a month and day. Ignore leap years and don't store
Please code in C++.
Write a class of objects named Date that remembers information about a month and day. Ignore leap years and don't store the year in your object. You must include the following public members:

Write a class of objects named Date that remembers information about a month and day. Ignore leap years and don't store the year in your object. You must include the following public members: member name description Date (m, d) constructs a new date representing the given month and day daysInMonth() returns the number of days in the month stored by your date object get Day() returns the day get Month returns the month next Day advances the Date to the next day, wrapping to the next month and/or year if necessary returns a string representation such as "07/04' toString You should define the entire class including the class heading, the private member variables, and the declarations and definitions of all the public member functions and constructor
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
