// AP Computer Science, A Exam, 1996, Question 3, Part A in C++ void PrintOneWeekLater(Date d) // postcondition: Prints a date that is seven days later than // the date represented by d { int k; for(k=0; k < 7; k++) { d++; } cout << d << endl; }