struct date
{
int day ;
int month;
int year
};
struct student_record
{
char name[10];
struct date birthday;
int score;
}
楼上正解struct date
{
int day ;
int month;
int year;
};
struct student_record
{
char name[10];
struct date birthday;
int score;
}