#include<stdio.h> #include<malloc.h> #define LEN sizeof(struct Student) void main() struct Student //结构体声明 { long num; int score; struct Student* next; }; int n;