- 1、本文档共9页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
学生籍贯记录簿
#includecomnirecord.h
#includeiostream.h
#includefcntl.h
#includeerrno.h
#define FILENAME1 sichuan.txt
#define FILENAME2 feisichuan.txt
void menu()
{
cout [1]----------添加endl;
cout [2]----------删除endl;
cout [3]----------修改endl;
cout [4]----------按学号查询endl;
cout [5]----------按姓名查询endl;
cout [6]----------按籍贯查询endl;
cout [7]----------显示endl;
cout [8]----------退出endl;
cout 请选择要进行的操作:endl;
}
void main()
{
int mu;
cout----------------------------------------endlendl;
cout*****欢迎使用学生籍贯信息记录簿系统*****endlendl;
cout----------------------------------------endl;
menu();
cinmu;
info inform;
inform.studentID=new char[10];
inform.name=new char[10];
inform.province=new char[10];
FILE* fh=fopen(FILENAME1,r+);
FILE* fh2=fopen(FILENAME2,r+);
if (fh==NULL||fh2==NULL)
{
perror(FILENAME1);
return;
}
comnirecord a(fh);//a是从四川籍的用户的链表
comnirecord b(fh2);//b是从非四川籍的用户的链表
while (mu!=8)
{
switch (mu)
{
case 1:
cout请输入你要添加的用户的信息:endl;
cout请输入你要添加的用户的学号:endl;
cininform.studentID;
cout请输入你要添加的用户的姓名:endl;
cininform.name;
cout请输入你要添加的用户的籍贯:endl;
cininform.province;
if (strcmp(inform.province,四川)==0)
{
a.Insert(a.Getn()-1,inform.studentID,inform.name,inform.province);
}
else
b.Insert(b.Getn()-1,inform.studentID,inform.name,inform.province);
break;
case 2:
cout请输入你要删除的用户的学号:endl;
cininform.studentID;
if(!(a.Delete(inform.studentID)||b.Delete(inform.studentID)))
{
cout删除失败!未找到该学号的用户!endl;
}
break;
case 3:
cout请输入你要修改的用户的学号:endl;
cininfo
文档评论(0)