#include #include #include "date.h" using namespace std; int main() { date d1; //Initialize to today's date. date d2; if (d1 == d2) { cout << "They're the same date.\n"; } else { cout << "Midnight occurred between lines 8 and 9.\n"; } return EXIT_SUCCESS; }