#include #include "student.h" using namespace std; struct student{ long int id[10]; ///十位学号 char name[15]; ///姓名 long int phonenumber[11]; //手机号 struct date; //日期 }; struct date{ int year; int month; int day; }; int main() { }