#include #include #include "date.h" using namespace std; int main() { date d; //today's date cout << "Today is " << d << ".\n"; d += 7; //next week cout << "Next week is " << d << ".\n"; cout << "The week after that is " << (d += 7) << ".\n"; return EXIT_SUCCESS; }