学生信息管理系统源代码

时间:2014-07-18 12:04:26
【文件属性】:
文件名称:学生信息管理系统源代码
文件大小:11KB
文件格式:JAVA
更新时间:2014-07-18 12:04:26
代码 include #include #include typedef struct { long class_1; //班级 long number; //学号 char name[20]; //姓名 float math; //数学 float c_program; //C语言 float physics; //大学物理 float english; //大学英语 float polity; //政治 float sport; //体育 float summary; //总分 float average; //平均分 }Student; Student stud[100]; //定义结构体数组变量的大小 int i=0; //i用于记录输入的学生的个数 int menu() //菜单函数

网友评论