正在加载图片...
struct std info ∥学生信息结构类型 tchar no; ∥学号 char name 9; ∥姓名 char sex 3 ∥性别 struct date birthday ∥l日 struct score ∥成绩结构类型由学号和三门课共4项组成 &char no 7; ∥学号 int score1 ∥成绩1 int score2 ∥)绩2 int score3 ∥成绩3 2021/224 52021/2/24 5 struct std_info //学生信息结构类型 {char no[7]; //学号 char name[9]; //姓名 char sex[3]; //性别 struct date birthday; //生日 }; struct score //成绩结构类型由学号和三门课共4项组成 {char no[7]; //学号 int score1; //成绩1 int score2; //成绩2 int score3; //成绩3 };
<<向上翻页向下翻页>>
©2008-现在 cucdc.com 高等教育资讯网 版权所有