#include<iostream.h>#include<malloc.h>#define NULL 0#define LEN sizeof(struct ST)#define S struct STstruct ST{ long num; float score; S *next;};int n=0;S *creat(void){ ...
阅读全文
2009
03-23