正在加载图片...
9.1.1程序解析程序首部定义了结构类型structstudent,其中的成员分别代表学生的基本信息structstudent(*学号*/int num;/*姓名*/char name[10];intcomputer,english,math;/*三门课程成绩*/*个人平均成绩*double average;3;主函数中定义的结构数组students中每一个数组元素就是一个结构变量,对应一名学生struct student students[50];9.1.1 程序解析 ◼ 程序首部定义了结构类型struct student,其中 的成员分别代表学生的基本信息 struct student{ int num; /* 学号 */ char name[10]; /* 姓名 */ int computer, english, math; /* 三门课程成绩 */ double average; /* 个人平均成绩 */ }; ◼ 主函数中定义的结构数组students中每一个数组 元素就是一个结构变量,对应一名学生 struct student students[50];
<<向上翻页向下翻页>>
©2008-现在 cucdc.com 高等教育资讯网 版权所有