三九宝宝网宝宝教育写作范文

C语言编写一个学生信息管理系统求原代码谢谢

01月06日 编辑 39baobao.com

#include#include "conio.h" #include "malloc.h" #include "windows.h" using namespace std; typedef struct { char name[20]; int stunum; int score; }StuElem; class StuList { private: StuElem *StuElem1; int Length; int MaxContine; public: StuList() { StuElem1=(StuElem*)malloc(sizeof(StuElem)*10); Length=0; MaxContine=10; } void Clear() //清空 { Length=0; } void Insert(StuElem Stu1) { if(Length==MaxContine) { realloc(StuElem1,(MaxContine+10)); MaxContine +=10 ; } for (int i=0;iStuElem1[i].score) { for(int j=Length;j>i;j--) { StuElem1[j]=StuElem1[j-1]; } break; } } StuElem1[i]=Stu1; Length++; } void Detele(int t) { for(int i=0;i

推荐阅读
图文推荐