大侠帮帮忙看看这个,错在那里,
#include <iostream>using namespace std;
struct date
{
int yy,mm,dd;
};
struct date get_date();
int main ()
{
struct date time;
time=get_date();
cout <<time<<endl;
}
struct date get_date()
{
struct date tim;
cout <<"Enter the time:";
cin >>tim;
return tim;
}