Hello everybody, just for a little background I have almost no experience in Object Oriented Design, so this may seem like a simple error but I've fuddled around with different ideas for hours and cannot seem to come to a solution.
In the "MMDDYYYY" method, I have formatted output to display a date in MMDDYYYY format. Here is the method here:
1 2 3 4 5 6 7
void Date::MMDDYYYY()
{
int MM = getMonth();
int DD = getDay();
int YYYY = getYear();
cout << MM << "/" << DD << "/" << YYYY;
}