单链表:求所有不及格人数的累计数
#include<iostream>#include<malloc.h>#include <iomanip>using namespace std;typedef int ElemType;#define M 20typedef struct LNode{ ElemType data; //定义数据与 struct LNode* next; //指针域}LNode, * LinkList;void CreateL