C语言编程题目,关于学生成绩管理系统的。向各位求助了
C语言编程题目,关于学生成绩管理系统的。向各位求助了
日期:2013-09-16 11:13:07 人气:1
#include
#include
#include
#include
#include
#define LEN sizeof(struct student)
typedef struct student{
long numb;
int chinese;
int math;
int english;
int totalscore;
char name[12];
struct student *next;
} STU;
//声明部分
S