class Date
{
public:
Date(UINT y,UINT m,UINT d);
~Date();
void operator<<(Date);
protected:
UINT year;
UINT month;
UINT day;
}
Date::Date()
{
year=y;
month=m;
day=d;
}
void Date::operator<<(Date date)
{
cout<< date.year<
class Date {
String year;
String mouth;
String day;
}
yyyy/mm/dd