正在加载图片...
struct date *日期结构类型:由年、月、日三项组成* fint year int month nt day struct std info/学生信息结构类型:由学号、姓名、性别和生日共4项组成* (char no[71 char name 9 char sex] struct date birthday struct score *成绩结构类型:由学号和三门成绩共4项组成*/ (char no[7] int scorel int score2. int score 3struct date /*日期结构类型:由年、月、日三项组成*/ {int year; int month; int day; }; struct std_info /*学生信息结构类型:由学号、姓名、性别和生日共4项组成*/ {char no[7]; char name[9]; char sex[3]; struct date birthday; }; struct score /*成绩结构类型:由学号和三门成绩共4项组成*/ {char no[7]; int score1; int score2; int score3; };
<<向上翻页向下翻页>>
©2008-现在 cucdc.com 高等教育资讯网 版权所有