Write a C++ program to find the which date is greater than given date (Assume the 2 dates in one single year only, consider leap year also as an input).
- Define a class called day with members as date, month and year.
- Define a parameterized constructor to initialize the dates.
- Overload > operator using member function to check if date1 > date2.
- Write a show_date function to show the date in dd : mm : yyyy format.
Answers
Answered by
1
Answer:
Explanation:
Define a class called day with members as date, month and year. Defining a parameterized constructor to initialize the dates.
using operator overloading checking which day is grater using condition if-else-if.
Attachments:
Similar questions