学生信息管理系统
学生信息管理系统
日期:2016-05-19 17:33:23 人气:1
#include/*我们也做过的*/
#include
#include
#define MAX_LEN 10
#define STU_NUM 30
#define COURSE_NUM 6
typedef struct student
{
long num;
char name[MAX_LEN];
float score[COURSE_NUM];
float sum;
float aver;
}STU;
int Menu(void);
void ReadScore(STU