create 3 files date.h, date.cpp, date_main.cpp that will create a birth date and a graduation date in the form MM/DD/YYYY
date.h
#include
using namespace std;
class Date
{
private:
public:
}
date.cpp should be the implementation file.
and date_main is the where everything comes together in the main function.