// datetest.cpp #include #include #include #include "date.h" int main() { Date today(7,18,2001), finalDay; Date firstDayInAug(8,1,2001); finalDay.set(8,1,2001); if (today == finalDay) cout << "OH CRAP!\n"; if (finalDay == firstDayInAug) cout << "good job, Sherlock.\n"; if (today == today) cout << "who would of thought?\n"; getch(); }