#include using namespace std; #include "Date.h" int main() { Date today, tomorrow, presDay(2,20,2017); Date deadline(6,21); Date xyz; today.Set(3,16,2017); // today.Month = 3; // no longer legal // today.Day = 16; // no longer legal // today.Year = 2017; // no longer legal today.Print(); tomorrow = today.Next(); tomorrow.Print(); presDay.Print(); deadline.Print(); xyz.Print(); }