#include malloc.h
#include stdio.h
#include stdlib.h
#define LEN sizeof(strUCt scorenode)
#define DEBUG
#include string.h
struct scorenode
{int number;/*学号*/
char name[10];/*姓名*/
float yuwen;/*语文成绩*/
float yingyu;/*英语成绩*/
float shuxue;/*数学成绩 */
struct scorenode *next;
};
typedef struct scorenode score;
int n,k;/*n,k为全局变量,本程序中的函数均可以使用它*/
/*==================================================================================*/
score *creat2311(void)
/*函数creat23...[ 查看全文 ]