发布网友 发布时间:2024-10-07 23:17
共1个回答
热心网友 时间:2024-10-08 00:02
#include"stdio.h" #include"stdlib.h" #include"string.h" #define N 3 typedef struct z1 { char no[11]; char name[15]; int score[N]; float sum; float average; int order; struct z1 *next; }STUDENT; STUDENT *init(); STUDENT *create(...