版權說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權,請進行舉報或認領
文檔簡介
1、#include<iomanip.h>#include<iostream.h>#include<fstream.h>#include<stdlib.h>class Employ/基類-雇員類protected: int num; char name10; char sex; int age; int wage;public:virtual void set()=0;virtual void print()=0;virtual void reserved()=0;class Manager:public Employ/經(jīng)理類public: void
2、 set(); void print();void reserved();class Salesman:public Employ/銷售員類protected:int salesvolume;int snum;public: void set(); void print();void reserved();void printinfor();int getsales()return salesvolume;int getsnum()return snum;class MarketMan:public Manager/銷售經(jīng)理類protected:int salesvolume;public:
3、void set(); void print();void reserved(); int resetwage();int getnum()return num;char*getname()return name;int getamount(Salesman s,int n)salesvolume=0;for(int i=0;i<n;i+)if(si.getsnum()=num)salesvolume+=si.getsales();return salesvolume;class Technician:public Employ/技術員類protected:int worktime;pu
4、blic: void set(); void print();void reserved();void Manager:set()wage=8000;cout<<"經(jīng)理的編號:"cin>>num;cout<<"其姓名:"cin>>name;cout<<"性別(m/w):"cin>>sex;cout<<"年齡:"cin>>age;void Manager:print()/經(jīng)理類成員函數(shù)cout<<"&
5、quot;<<endl;cout<<""<<setw(12)<<num<<""<<setw(12)<<name<<""<<setw(12)<<sex;cout<<""<<setw(12)<<age<<""<<setw(12)<<wage<<""<<endl;voi
6、d Manager:reserved()ofstream employf("E:05-29gzglxt.txt",ios:app);employf<<"經(jīng)理的編號:"<<num<<endl <<"其姓名:"<<name<<endl <<"性別(m/w):"<<sex<<endl <<"年齡:"<<age<<endl;void MarketMan:set(
7、)wage=resetwage();cout<<"銷售經(jīng)理的編號:"cin>>num;cout<<"其姓名:"cin>>name;cout<<"性別(m/w):"cin>>sex;cout<<"年齡:"cin>>age; void MarketMan:print() resetwage();cout<<""<<endl;cout<<""<&
8、lt;setw(12)<<num<<""<<setw(12)<<name<<""<<setw(12)<<sex;cout<<""<<setw(12)<<age<<""<<setw(12)<<wage<<""<<endl;void MarketMan:reserved() ofstream employf("E
9、:05-29gzglxt.txt",ios:app);employf<<"銷售經(jīng)理的編號:"<<num<<endl <<"其姓名:"<<name<<endl <<"性別(m/w):"<<sex<<endl <<"年齡:"<<age<<endl;int MarketMan:resetwage()wage=5000+int(salesvolume*0.005);ret
10、urn wage;void Salesman:set()/銷售員類定義cout<<"銷售員的編號:"cin>>num;cout<<"其姓名:"cin>>name;cout<<"性別(m/w):"cin>>sex;cout<<"年齡:"cin>>age;cout<<"銷售額:"cin>>salesvolume;cout<<"所屬銷售經(jīng)理的編號:"c
11、in>>snum; wage=int(salesvolume*0.04);void Salesman:printinfor()cout<<""<<endl;cout<<""<<setw(14)<<num<<""<<setw(14)<<name<<""<<setw(14)<<salesvolume<<""<<endl;void Sa
12、lesman:print()cout<<""<<endl;cout<<""<<setw(8)<<num<<""<<setw(10)<<name<<""<<setw(10)<<sex;cout<<""<<setw(10)<<age<<""<<setw(10)<<wage<
13、<""<<setw(16)<<getsnum()<<""<<endl; void Salesman:reserved()ofstream employf("E:05-29gzglxt.txt",ios:app);employf<<"銷售員的編號:"<<num<<endl <<"其姓名:"<<name<<endl <<"性別(m/w):"&l
14、t;<sex<<endl <<"年齡:"<<age<<endl <<"銷售額:"<<salesvolume<<endl <<"所屬銷售經(jīng)理的編號"<<snum<<endl;void Technician:set()/技術員類定義cout<<"技術員的編號:"cin>>num;cout<<"其姓名:"cin>>name;cou
15、t<<"性別(m/w):"cin>>sex;cout<<"年齡:"cin>>age;cout<<"工作時間:"cin>>worktime;wage=worktime*100; void Technician:print()cout<<""<<endl;cout<<""<<setw(12)<<num<<""<<setw(12
16、)<<name<<""<<setw(12)<<sex;cout<<""<<setw(12)<<age<<""<<setw(12)<<wage<<""<<endl; void Technician:reserved() ofstream employf("E:05-29gzglxt.txt",ios:app);employf<<"技術
17、員的編號:"<<num<<endl <<"其姓名:"<<name<<endl <<"性別(m/w):"<<sex<<endl <<"年齡:"<<age<<endl <<"工作時間:"<<worktime<<endl;/主函數(shù)int t,m,s,mm;Technician*pt;Manager*pm;Salesman*ps;MarketMan
18、*pmm;void setin();void count();void printdata();void reservedall();void single();void main()cout<<"請分別輸入技術員,經(jīng)理,銷售員,銷售經(jīng)理人數(shù):"<<endl;cin>>t>>m>>s>>mm;pt=new Techniciant;pm=new Managerm;ps=new Salesmans;pmm=new MarketManmm;if(!pt)|(!pm)|(!ps)|(!pmm)cout<&
19、lt;"堆內(nèi)存分配失敗!"<<endl;exit(1);single();void single() cout<<"小型公司工資管理系統(tǒng)"<<endl;cout<<""<<endl;cout<<" 請選擇所需的操作 "<<endl;cout<<" "<<endl;cout<<" 數(shù)據(jù)輸入:1,并按回車鍵 "<<endl;cout<<&
20、quot; "<<endl;cout<<" 數(shù)據(jù)統(tǒng)計:2,并按回車鍵 "<<endl;cout<<" "<<endl;cout<<" 數(shù)據(jù)打印:3,并按回車鍵 "<<endl;cout<<" "<<endl;cout<<" 數(shù)據(jù)備份:4,并按回車鍵 "<<endl;cout<<" "<<endl;cout<
21、<" 退出系統(tǒng):5,并按回車鍵 "<<endl;cout<<" "<<endl;cout<<""<<endl;cout<<"請選擇一個操作:"<<endl;int choice;cin>>choice;switch(choice)case 1:setin();case 2:count(); case 3:printdata();case 4:reservedall();case 5:exit(0);void set
22、in()Menu1:cout<<"小型公司工資管理系統(tǒng)"<<endl;cout<<""<<endl;cout<<" 請選擇所需的操作 "<<endl;cout<<" "<<endl;cout<<"技術員數(shù)據(jù)輸入 : 1,并按回車鍵 "<<endl;cout<<" "<<endl;cout<<"經(jīng)理數(shù)據(jù)輸入 : 2
23、,并按回車鍵 "<<endl;cout<<" "<<endl;cout<<"銷售員數(shù)據(jù)輸入 : 3,并按回車鍵 "<<endl;cout<<" "<<endl;cout<<"銷售經(jīng)理數(shù)據(jù)輸入 : 4,并按回車鍵 "<<endl;cout<<" "<<endl;cout<<"返回上一級菜單 : 5,并按回車鍵 "<<
24、;endl;cout<<""<<endl;cout<<"請選擇一個操作"int ch1,i;cin>>ch1;switch(ch1)case 1:for(i=0;i<t;i+) pti.set(); cout<<"-"<<endl; goto Menu1;case 2:for(i=0;i<m;i+) pmi.set(); cout<<"-"<<endl; goto Menu1;case 3:for(i=0;i
25、<s;i+) psi.set(); cout<<"-"<<endl; goto Menu1; case 4:for(i=0;i<mm;i+) pmmi.set(); cout<<"-"<<endl; goto Menu1; case 5:single();void count()Menu2:cout<<"小型公司工資管理系統(tǒng)"<<endl;cout<<""<<endl;cout<<" 請
26、選擇所需的操作 "<<endl;cout<<" "<<endl;cout<<"各銷售經(jīng)理下屬銷售員業(yè)績統(tǒng)計 : 1,并按回車鍵 "<<endl;cout<<" "<<endl;cout<<"銷售經(jīng)理按工資排序 : 2,并按回車鍵 "<<endl;cout<<" "<<endl;cout<<"返回上一級菜單 : 3,并按回車鍵 &quo
27、t;<<endl;cout<<""<<endl;cout<<"請選擇一個操作"int ch2,i,j;cin>>ch2;switch(ch2)case 1:for(i=0;i<mm;i+) cout<<"職工號為:"<<pmmi.getnum()<<"銷售經(jīng)理:"<<pmmi.getname()<<"下屬銷售員的業(yè)績?yōu)?"<<endl; cout<<
28、;""<<endl; cout<<"職工號 姓名 銷售額 "<<endl; for(j=0;j<s;j+) if(pmmi.getnum()=psj.getsnum() psj.printinfor(); cout<<""<<endl; cout<<"銷售額總計: "<<setw(22)<<pmmi.getamount(ps,s)<<""<<endl; cout<&
29、lt;""<<endl; goto Menu2; case 2:cout<<"銷售經(jīng)理按工資排序為:"<<endl; MarketMan pmmm; for(i=1;i<mm;i+) for(j=0;j<mm-i;j+) if(pmmj.getamount(ps,s)<pmmj+1.getamount(ps,s) pmmm=pmmj; pmmj=pmmj+1; pmmj+1=pmmm; cout<<""<<endl; cout<<" 職
30、工號 姓名 性別 年齡 工資 "<<endl; for(i=0;i<mm;i+) pmmi.print(); cout<<""<<endl; cout<<" -"<<endl; goto Menu2;case 3:single();void printdata()Menu3:cout<<"小型公司工資管理系統(tǒng)"<<endl;cout<<""<<endl;cout<<" 請
31、選擇所需的操作 "<<endl;cout<<" "<<endl;cout<<"技術員數(shù)據(jù)輸出 : 1,并按回車鍵 "<<endl;cout<<" "<<endl;cout<<"經(jīng)理數(shù)據(jù)輸出 : 2,并按回車鍵 "<<endl;cout<<" "<<endl;cout<<"銷售員數(shù)據(jù)輸出 : 3,并按回車鍵 "<<
32、endl;cout<<" "<<endl;cout<<"銷售經(jīng)理數(shù)據(jù)輸出 : 4,并按回車鍵 "<<endl;cout<<" "<<endl;cout<<"返回上一級 : 5,并按回車鍵 "<<endl;cout<<""<<endl;cout<<"請選擇一個操作"int ch3,i;cin>>ch3;switch(ch3)case 1
33、: cout<<"技術員"<<endl<<endl; cout<<""<<endl; cout<<" 職工號 姓名 性別 年齡 工資 "<<endl; for(i=0;i<t;i+) pti.print(); cout<<""<<endl; cout<<"-"<<endl; goto Menu3;case 2: cout<<"經(jīng)理&quo
34、t;<<endl<<endl; cout<<""<<endl; cout<<" 職工號 姓名 性別 年齡 工資 "<<endl; for(i=0;i<m;i+) pmi.print(); cout<<""<<endl; cout<<"-"<<endl; goto Menu3;case 4:cout<<"銷售經(jīng)理"<<endl<<endl
35、; cout<<""<<endl; cout<<" 職工號 姓名 性別 年齡 工資 "<<endl; for(i=0;i<mm;i+) pmmi.print(); cout<<""<<endl; cout<<"-"<<endl; goto Menu3;case 3:cout<<"銷售員"<<endl<<endl; cout<<""&l
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經(jīng)權益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
- 6. 下載文件中如有侵權或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 二零二五版電力設備供應商設備采購及安裝合同3篇
- 二零二五年度新型外墻涂料施工勞務分包質(zhì)量保證合同3篇
- 二零二五版VOC環(huán)保設施全生命周期運維合同2篇
- 二零二五年股權投資退出與回購條款合同范本3篇
- 二零二五版起重設備吊裝安全管理合同3篇
- 二零二五年杭州房產(chǎn)中介房屋租賃合同規(guī)范文本9篇
- 二零二五版?zhèn)}儲物流倉儲場地租賃合同20篇
- 二零二五版智能電網(wǎng)500KVA箱變設備維護保養(yǎng)服務合同3篇
- 二零二五年接送機服務及行李寄存合同3篇
- 二零二五年度高端商務座椅定制與物流配送合同3篇
- 中央2025年國務院發(fā)展研究中心有關直屬事業(yè)單位招聘19人筆試歷年參考題庫附帶答案詳解
- 外呼合作協(xié)議
- 小學二年級100以內(nèi)進退位加減法800道題
- 2025年1月普通高等學校招生全國統(tǒng)一考試適應性測試(八省聯(lián)考)語文試題
- 《立式輥磨機用陶瓷金屬復合磨輥輥套及磨盤襯板》編制說明
- 保險公司2025年工作總結與2025年工作計劃
- 育肥牛購銷合同范例
- 暨南大學珠海校區(qū)財務辦招考財務工作人員管理單位遴選500模擬題附帶答案詳解
- DB51-T 2944-2022 四川省社會組織建設治理規(guī)范
- 2024北京初三(上)期末英語匯編:材料作文
- 2023年輔導員職業(yè)技能大賽試題及答案
評論
0/150
提交評論