学生信息管理系统C++语言程序代码

学生信息管理系统C++语言程序代码

ID:47513898

大小:96.00 KB

页数:14页

时间:2020-01-12

学生信息管理系统C++语言程序代码_第1页
学生信息管理系统C++语言程序代码_第2页
学生信息管理系统C++语言程序代码_第3页
学生信息管理系统C++语言程序代码_第4页
学生信息管理系统C++语言程序代码_第5页
资源描述:

《学生信息管理系统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

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。