把一个C语言换成C++的在线等..
把一个C语言换成C++的在线等..
日期:2013-06-26 12:55:56 人气:1
#include
using namespace std;
#include
#define MAXLEN 100
#define ERROR 0
typedef struct node
{ int num;
char name[MAXLEN];
int score;
struct node *next;
}list;
list *create()
{ list *head,*p,*r;
int i,n;
head=(list