资源描述:
《高校人事管理系统课程设计报告.doc》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、..一.需求分析1.目的与意义、、、、、、、、、、、、、、、、、、、、、、、2.系统流程图高校人事管理系统word资料..增加人员资料12删除人员信息word资料..修改人员信息数据存盘退出34选择要进5行的操作687查询人员信息数据装入显示所有信息word资料..二.总体设计1.系统功能分析执行程序后,按界面的显示,选择1—8种操作。选1,增加人员资料,资料包括编号、职工类别、姓名、性别、年龄、来院时间、职务、职称、党派、学历。选2,删除人员信息。选3,修改人员信息,可以选择要修改的内容。选4,查询人员信息,可按编号或姓名查询。
2、选5,数据存盘。选6,数据装入。选7,显示所有信息。选8,退出。2.系统功能模块划分与设计高校人事管理系统添删修查加除改询功功功功能能能能数据存显示盘与装功入功能能word资料..三.详细设计1.源程序代码#include#include#include#includeclassperson{private:intno;//编号chartype[20];//职工类型charname[20];//姓名charsex[10];//性别intage;//年
3、龄chartime[20];//来院时间charpos[20];//职务chartechpos[20];//职称charparty[20];//党派charstudy[30];//最高学历word资料..person*mynext;//指针语public:person(intnnum,charntype[],charnname[],charnsex[],intnage,charntime[],charnpos[],charntechpos[],charnparty[],charnstudy[]){no=nnum;strcpy(type,
4、ntype);//将ntype的值复制给typestrcpy(name,nname);strcpy(sex,nsex);age=nage;strcpy(time,ntime);strcpy(pos,npos);strcpy(techpos,ntechpos);strcpy(party,nparty);strcpy(study,nstudy);mynext=NULL;}person(intnnum,charntype[],charnname[],charnsex[],intnage,charntime[],charnpos[],charn
5、techpos[],charnparty[],charnstudy[],person*next)//某高校,主要人员有:在职人员(行政人员、教师、一般员工)、退word资料..休人员、返聘人员和临时工。//现在,需要存储这些人员的人事档案信息:编号、姓名、性别、年龄、职务、职称、政治面貌、最高学历、来院时间。{no=nnum;strcpy(type,ntype);strcpy(name,nname);strcpy(sex,nsex);age=nage;strcpy(time,ntime);strcpy(pos,npos);strcpy(
6、techpos,ntechpos);strcpy(party,nparty);strcpy(study,nstudy);mynext=next;}voidsetnext(person*next){mynext=next;}person*getnext(){word资料..returnmynext;}intgetnum(){returnno;}char*getname(){returnname;}char*getsex(){returnsex;}char*getpos(){returnpos;}char*gettechpos(){retu
7、rntechpos;}word资料..char*gettime(){returntime;}char*getparty(){returnparty;}char*getstudy(){returnstudy;}intgetage(){returnage;}voidgetag(intas){age=as;}char*gettype(){word资料..returntype;}};classSchool{private:person*myfirst;intfirstnum;public:School()//无参构造函数{myfirst=NUL
8、L;//将指针置空}School(intnnu,charntyp[],charnnam[],charnse[],intnag,charntim[],charnpo[],charntechpo[],charn