欢迎来到天天文库
浏览记录
ID:47821454
大小:1.12 MB
页数:13页
时间:2019-11-16
《学生信息管理计划系统C++代码》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、#+1.程序执行后的部分效果1.1项目主菜单效果图1.2初始化信息,第一次对信息的录入#+1.3添加学生信息#+1.4删除某学生信息#+1.5修改某学生信息#+1.6查询某学生信息1.7显示全部学生信息#+源代码:/*把StudentData.cpp(源代码)和student.txt(数据存放处)放在同一个文件夹下*/#include#include#include#include#includeusingnamespacestd;//最多提供50个学生的数
2、据,可根据需要进行更改constintMAX=50;intcount=0;//用来统计学生人数classStudent{public:voidSet();//初始化信息,第一次对信息的录入voidAdd();//添加学生信息//从磁盘读取数据以便进行数据的操作,方便再重写进磁盘friendvoidRead(stringno[],stringname[],stringsex[],stringspecial[],stringclas[]);intJudge(stringnum);//判断num#+是否在学生信息数据库中(注意它有一个参数,并且有一个
3、int型的返回值)voidDelete();//删除某学生信息voidChange();//修改某学生信息voidSearch();//查询某学生信息voidDisplay();//显示全部学生信息private:stringm_no;stringm_name;stringm_sex;//m_指的是成员变量(member)stringm_special;stringm_clas;};voidStudent::Set(){stringno,name,sex,special,clas;ofstreamoutfile("student.txt");/
4、/打开文件if(!outfile){cerr<<"openerror"<>no;if(no=="0")break;//当输入的学号是0时,停止录入cin>>name>>sex>>special>>clas;count++;m_no=no;outfile<<
5、m_no<<"t";//每录入一个学号,写进磁盘保存,以下同理m_name=name;outfile<6、文件的末尾ofstreamoutfile("student.txt",ios::app);if(!outfile){cerr<<"openerror"<>no>>name>>sex>>special>>clas;m_no=no;outfile<7、8、error"<>
6、文件的末尾ofstreamoutfile("student.txt",ios::app);if(!outfile){cerr<<"openerror"<>no>>name>>sex>>special>>clas;m_no=no;outfile<7、8、error"<>
7、8、error"<>
8、error"<>
此文档下载收益归作者所有