#include #include #include "date.h" using namespace std; int main() { date d; cout << "Today is " << d << ".\n"; cout << "Next week is " << d+7 << ".\n"; cout << "Next week is " << 7+d << ".\n"; cout << "Tomorrow is " << ++d << ".\n"; date newYearsEve {12, 31, 2025}; //Outputs a value that is no longer in newYearsEve. cout << "The day after " << newYearsEve++ << " is "; cout << newYearsEve << "\n"; //Outpus new year's day. return EXIT_SUCCESS; }