#include "stdafx" #include "c:/cpp/classes/Date.cpp" #include using namespace std; int main() { Date today; cout << today << endl; system("pause"); Date darwinBirthday(2,12,1809); cout << darwinBirthday << endl; system("pause"); Date lincolnBirthday("2/12/1809"); cout << lincolnBirthday << endl; system("pause"); return 0; }//main