欢迎来到天天文库
浏览记录
ID:47513898
大小:96.00 KB
页数:14页
时间:2020-01-12
《学生信息管理系统C++语言程序代码》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、#include#include#include#include#include#include#include#include#include#defineLENsizeof(structstudent)usingnamespacestd;intn=0;//定义一个全局变量统计学生人数structstudent//定义一个学生信息的结构体{charname[2
2、0];//用来存放姓名的charsex[20];//用来存放性别的charyuanxi[20];//用来存放院系的longintid;//用来存放学号的intscore[4];//用来存放分数的inttotal;//用来存放总分数的structstudent*next;};vectorstu;classInformation{public:Information();//构造函数.~Information();//析构函数.student*creat();//建立链表函数。voidoutput(student*hea
3、d);intcount(student*head);//定义函数count()统计考生总数student*insert(student*head);//指针函数*insert()用来添加考生信息.student*cancel(student*head,longintnum);//指针函数*cancel()用来删除考生信息.student*find(student*head,longintnum);//指针函数*find()用来查找考生信息.voidinorder(student*head);//定义inorder()函数将考生的总分从
4、大到小排列并输出voidaverage(student*head);//求学生成绩的平均分的函数voidsave(student*head);//保存函数student*Read();//读取函数private:student*p1,*p2,*p3,*head,st;};Information::Information()//构造函数{cout<<"******************************************************************************";cout<<"-----
5、-------------------<<欢迎您使用学生信息管理系统>>------------------------";cout<<"******************************************************************************";}Information::~Information()//构造函数{cout<<"*************************************************************************
6、*****";cout<<"------------------------<<谢谢您使用学生信息管理系统>>------------------------";cout<<"******************************************************************************";}student*Information::creat(void)//定义一个指向structstudent的结构体指针函数*creat()用来增加学生信息.{charch[20];n=0;/
7、/用来存放姓名的p1=p2=(student*)malloc(LEN);//调用malloc()函数用来开辟一个新的存储单元cout<<"-------------<<请建立学生考试信息表,在姓名处输入!结束输入。>>--------------"<>ch;head=NULL;//给指针head赋初值while(strcmp(ch,"!")!=0)//调用字符比较函数strcmp()用来判断是否继续输入{charstr[10];intflag=0;p1=(student*)malloc(LE
8、N);//调用malloc()函数用来开辟一个新的存储单元strcpy(p1->name,ch);//将循环结构前面输入的姓名复制到结构体名为p1的数组name中cout<<"性别:";cin>>p1->sex;cout
此文档下载收益归作者所有