每个学生有学号姓名性别枚举类型?
#include "stdio.h" #include #define SIZE 10 struct student{ char id[20]; char name[20]; int score[3]; float average; } stud[SIZE]; void input() /* 输入学生的信息 */ { int i; for(i=0;i