Question: 3. (Program) a. Create an operator function for the Date class in Class 11.1 that compares two // implementation section void Date::showDate() Date objects and

3. (Program) a. Create an operator function for the Date class in Class 11.1 that compares two // implementation section void Date::showDate() Date objects and returns a Boolean value of true if the first date is larger than the second; otherwise, it should return a false value. The "larger than algorithm for this comparison operator function is the following Accept one date as the current object being evaluated cout #include icmanip> // needed for formatting using nanespace std; if (daydate2.day &&monthdate2.month &&yeardate2.year) return true; else return false; // declaration section class Date private: int month; int dayi int year; publici Date( int mm 1, int dd- 1, int yyyy :: 2014) // ?nline constructor (month mm; day-dd; year-yyyy ;} void setDate(int mn, int da, int yy) // ?nline mutator (month mm dayddi yearyyah void showDate(0: bool isLeapYear bool operator== { const Date&); accessor
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
