#include#include#include#define MAXSIZE 100
typedef struct Student{char no[20];// 学号char name[20];// 姓名int price;// 成绩}Student;int sum=0;
typedef struct{Student elem[MAXSIZE]; //线性表占用的数组空间int last;//最后一个元素的下标}SeqList;
https://blog.csdn.net/llwwlql/article/details/50333089