- 1、本文档共8页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
//学籍管理系统
#includeiostream
#includestring
#includefstream
#includeiomanip
using namespace std;
class student
{
protected:
int number;
char name[20];
char sex[6];
char place[20];
char birth[20];
char party[10];
public:
student *next;
student(){ }
~student(){ }
char* getname(){ return name; }
int getnumber(){ return number;}
void input()
{
int e=1;
cout请按提示输入:endl;
cout\t输入学号: ;
cinnumber;
cout\t输入姓名: ;
cinname;
do
{
cout\t输入性别: ;
cinsex;
if(strcmp(sex,boy)==0 || strcmp(sex,girl)==0)
{
cout\t输入生日: ;
cinbirth;
cout\t输入政治面貌: ;
cinparty;
cout\t输入家庭住址: ;
cinplace;
e=0;
}
else
{
cout\t请重新输入!endl;
e=1;
}
}while(e);
return ;
}
void output()
{
cout学生基本信息如下:endl;
cout学号:number
姓名:name
性别:sex
生日:birth
政治面貌:party
家庭住址:placeendlendl;
}
void output(ofstream os)
{
ossetw(6)number
setw(15)name
setw(6)sex
setw(20)place
setw(20)birth
setw(20)partyendl;
}
};
class school
{
public:
school(){ head=new student; head-next=NULL; key=0; }
~school(){ delete head; }
void input();
void mend();
void del();
int find(student **p,int num,char *pn=^);
void found();
void show();
void save();
void begin();
void clear();
char mainmenu();
int getkey(){ return key;}
void setkey(int k){ key=k; }
//**:
student *head;
int key;
};
//录入函数
void school::input()
{
student *p1,*p2=NULL;
p1=head;
int n;
while(
您可能关注的文档
最近下载
- 北京百师联盟信息技术研究院.doc
- 2.6《观察与比较》教学设计-2024-2025学年一年级上册科学教科版.docx VIP
- 人教版道德与法治二年级上册《这些是大家的》课件.pptx
- 中国特色大国外交和推动构建人类命运共同体.pptx
- 《产品质量鉴定程序规范 总则》.doc VIP
- 七年级数学(沪教版)上册课件-【第2课时 添括号】.pptx
- The Catcher int heRye麦田守望者英文版.doc
- 农药登记残留试验待测残留物和植物源性食品膳食风险评估残留物目录(2020版).docx
- 甲醇羰基化法制备醋酸.pptx
- 超星网课尔雅《走近核科学技术》超星尔雅答案2023章节测验答案.pdf
文档评论(0)