正在加载图片...
struct date /*日期结构体类型:由年、月、日三项组成* iInt year int month int day struct std info/学生信息结构体类型:由学号、姓名、性别和生日共4项组成 ( char no[71 char name[9] char sex: struct date birthday; struct score *成绩结构体类型:由学号和三门成绩共4项组成* ichar no[71 int score l int score2 int score 3 上一页 下一页 返回本章首页返回本章首页 下一页 上一页 struct 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 高等教育资讯网 版权所有