#include #include "date.h" using namespace std; // show Date member functions int main() { Date today; Date republic(10,29,1923); Date million(1000000); Date y2k(1,1,2000); cout << "today: " << Date() << endl; cout << "Republic of Turkey has been founded on: " << republic << endl; cout << "millionth day: " << million << endl; cout << y2k << " was a " << y2k.DayName() << endl << endl; Date one = million - 999999; Date republic2000(republic.Month(), republic.Day(), 2000); today++; cout << "day one: " << one << " was a " << one.DayName() << endl; cout << "republic2000: " << republic2000 << endl; cout << "tomorrow: " << today << endl; return 0; }