小型公司工资管理系统
文章转自王牌软件
站长推荐:NSetup一键部署软件
一键式完成美化安装包制作,自动增量升级,数据统计,数字签名。应对各种复杂场景,脚本模块化拆分,常规复杂的脚本代码,图形化设置。无需专业的研发经验,轻松完成项目部署。(www.nsetup.cn)
只回答业务咨询
站长推荐:NSetup一键部署软件
一键式完成美化安装包制作,自动增量升级,数据统计,数字签名。应对各种复杂场景,脚本模块化拆分,常规复杂的脚本代码,图形化设置。无需专业的研发经验,轻松完成项目部署。(www.nsetup.cn)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 |
#include<iostream> #include<iomanip> #include<string> #include<fstream> using namespace std; class G //基类 { public: string name; int age; char sex; G() {name="hao";age=21;sex='w';} void set_G() { cout<<"其姓名:";cin>>name;cout<<endl; cout<<"性别(m/w):";cin>>sex;cout<<endl; cout<<"年龄:";cin>>age;cout<<endl; } }; class JSY:public G //技术员类 { public: int num; int hour; float salary; JSY() {num=0;hour=0;salary=0;} void display() { cout<<"技术员编号:";cin>>num;cout<<endl; G::set_G(); cout<<"工作时间:";cin>>hour;cout<<endl; salary=100*hour; } }; class XSY:public G //销售员类 { public: int xsmoney; int n; float salary; int num; XSY() {xsmoney=0;n=0;salary=0;num=0;} void display1() { cout<<"销售员编号:";cin>>num;cout<<endl; G::set_G(); cout<<"销售额:";cin>>xsmoney;cout<<endl; cout<<"所属销售经理编号:";cin>>n;cout<<endl; salary=xsmoney*0.04; } }; class JL:public G //经理类 { public: int num; float salary; JL() {num=0;salary=8000;} void display2() { cout<<"经理的编号:";cin>>num;cout<<endl; G::set_G(); } }; class XSJL:public G //销售经理类 { public: int dxmoney; int xszmoney; int xsmoney; float salary; int num; XSJL() {dxmoney=5000;xszmoney=0;xsmoney=0;salary=0;num=0;} void display3() { cout<<"销售经理编号:";cin>>num;cout<<endl; G::set_G(); } }; int main() //主函数 { JSY a[4]; XSY b[8]; JL c[4]; XSJL d[4]; cont:cout<<" ★★小型公司工资管理系统★★"<<endl; cout<<"┌───────────────┐"<<endl; cout<<"│ 请选择您所需要的操作 │"<<endl; cout<<"│ 数据输入:1,并按回车键 │"<<endl; cout<<"│ 数据统计:2,并按回车键 │"<<endl; cout<<"│ 数据打印:3,并按回车键 │"<<endl; cout<<"│ 数据备份:4,并按回车键 │"<<endl; cout<<"│ 退出系统:5,并按回车键 │"<<endl; cout<<"└───────────────┘"<<endl; cout<<"请选择一个操作:"<<endl; int i,j,k,n,m; cin>>i; switch(i) { case 1: //职工数据输入 { cout<<" ★★小型公司工资管理系统★★"<<endl; cout<<"┌───────────────────┐"<<endl; cout<<"│ 请选择您所需要的操作 │"<<endl; cout<<"│ 技术员数据输入: 1,并按回车键 │"<<endl; cout<<"│ 销售员数据输入: 2,并按回车键 │"<<endl; cout<<"│ 经理数据输入: 3,并按回车键 │"<<endl; cout<<"│ 销售经理数据输入:4,并按回车键 │"<<endl; cout<<"│ 返回上一级: 5,并按回车键 │"<<endl; cout<<"└───────────────────┘"<<endl; } for(i=1;i<=5;i++) { cout<<"请选择一个操作:"<<endl; int l; cin>>l; switch(l) { case 1: //技术员数据输入 {for(n=0;n<4;n++) a[n].display(); cout<<"------------------------"<<endl;} break; case 2: //销售员数据输入 {for(m=0;m<8;m++) b[m].display1(); cout<<"------------------------"<<endl;}break; case 3: //经理数据输入 {for(j=0;j<4;j++) c[j].display2(); cout<<"------------------------"<<endl;}break; case 4: //销售经理数据输入 {for(k=0;k<4;k++) d[k].display3(); cout<<"------------------------"<<endl;}break; case 5: goto cont; //返回上一级 } } goto cont; case 2: //职工数据统计 {for(int i=0;i<=3;i++) {cout<<"职工号为"<<d[i].num<<"销售经理"<<d[i].name<<"下属销售员的业绩为:"<<endl; cout<<"┌──────┬──────┬──────┐"<<endl; cout<<"│ 职工号 │性名 │销售额 │"<<endl; float w=0; for(int j=0;j<=7;j++) {if(b[j].n==d[i].num) {cout<<"├──────┼──────┼──────┤"<<endl; cout<<"│"<<setw(12)<<b[j].num<<"│"<<setw(12)<<b[j].name<<"│"<<setw(12)<<b[j].xsmoney<<"│"<<endl; w=w+b[j].xsmoney;} } d[i].xszmoney=w; d[i].salary=5000+d[i].xszmoney*.005; cout<<"├──────┼──────┴──────┤"<<endl; cout<<"│"<<setw(12)<<"销售额总计"<<"│"<<setw(26)<<d[i].xszmoney<<"│"<<endl; cout<<"└──────┴─────────────┘"<<endl; } XSJL p; for(i=0;i<=3;i++) {for(int j=1;j<=3;j++) if(d[i].salary>d[j].salary) {p=d[j]; d[j]=d[i];d[i]=p; }} cout<<"销售经理按工资排序为"<<endl; cout<<"┌─────┬─────┬─────┬─────┬─────┐"<<endl; cout<<"│ 职工号 │ 姓名 │ 性别 │ 年龄 │ 工资 │"<<endl; for(i=0;i<4;i++) {cout<<"├─────┼─────┼─────┼─────┼─────┤"<<endl; cout<<"│"<<setw(10)<<d[i].num<<"│"<<setw(10)<<d[i].name<<"│"<<setw(10)<<d[i].sex<<"│"<<setw(10)<<d[i].age<<"│"<<setw(10)<<d[i].salary<<"│"<<endl; } cout<<"└─────┴─────┴─────┴─────┴─────┘"<<endl; } goto cont; case 3: //职工数据输出 {for(int i=0;i<=3;i++) {d[i].dxmoney=5000; a[i].salary=a[i].hour*100; } for(i=0;i<=7;i++) {b[i].salary=b[i].xsmoney*0.04; } cout<<"职工基本情况一览表如下"<<endl; cout<<"技术员"<<endl; cout<<"┌─────┬─────┬─────┬─────┬─────┐"<<endl; cout<<"│"<<setw(10)<<"职工号"<<"│"<<setw(10)<<"姓名"<<"│"<<setw(10)<<"性别"<<"│"<<setw(10)<<"年龄"<<"│"<<setw(10)<<"工资"<<"│"<<endl; for(i=0;i<=3;i++) {cout<<"├─────┼─────┼─────┼─────┼─────┤"<<endl; cout<<"│"<<setw(10)<<a[i].num<<"│"<<setw(10)<<a[i].name<<"│"<<setw(10)<<a[i].sex<<"│"<<setw(10)<<a[i].age<<"│"<<setw(10)<<a[i].salary<<"│"<<endl; } cout<<"└─────┴─────┴─────┴─────┴─────┘"<<endl; cout<<"经理"<<endl; cout<<"┌─────┬─────┬─────┬─────┬─────┐"<<endl; cout<<"│"<<setw(10)<<"职工号"<<"│"<<setw(10)<<"姓名"<<"│"<<setw(10)<<"性别"<<"│"<<setw(10)<<"年龄"<<"│"<<setw(10)<<"工资"<<"│"<<endl; for(i=0;i<=3;i++) {cout<<"├─────┼─────┼─────┼─────┼─────┤"<<endl; cout<<"│"<<setw(10)<<c[i].num<<"│"<<setw(10)<<c[i].name<<"│"<<setw(10)<<c[i].sex<<"│"<<setw(10)<<c[i].age<<"│"<<setw(10)<<c[i].salary<<"│"<<endl; } cout<<"└─────┴─────┴─────┴─────┴─────┘"<<endl; cout<<"销售经理"<<endl; cout<<"┌─────┬─────┬─────┬─────┬─────┐"<<endl; cout<<"│"<<setw(10)<<"职工号"<<"│"<<setw(10)<<"姓名"<<"│"<<setw(10)<<"性别"<<"│"<<setw(10)<<"年龄"<<"│"<<setw(10)<<"工资"<<"│"<<endl; for(i=0;i<=3;i++) {cout<<"├─────┼─────┼─────┼─────┼─────┤"<<endl; cout<<"│"<<setw(10)<<d[i].num<<"│"<<setw(10)<<d[i].name<<"│"<<setw(10)<<d[i].sex<<"│"<<setw(10)<<d[i].age<<"│"<<setw(10)<<d[i].salary<<"│"<<endl; } cout<<"└─────┴─────┴─────┴─────┴─────┘"<<endl; cout<<"销售员"<<endl; cout<<"┌────┬────┬────┬────┬────┬─────────┐"<<endl; cout<<"│"<<setw(8)<<"职工号"<<"│"<<setw(8)<<"姓名"<<"│"<<setw(8)<<"性别"<<"│"<<setw(8)<<"年龄"<<"│"<<setw(8)<<"工资"<<"│"<<setw(18)<<"所属部门经理编号"<<"│"<<endl; for(i=0;i<=7;i++) {cout<<"├────┼────┼────┼────┼────┼─────────┤"<<endl; cout<<"│"<<setw(8)<<b[i].num<<"│"<<setw(8)<<b[i].name<<"│"<<setw(8)<<b[i].sex<<"│"<<setw(8)<<b[i].age<<"│"<<setw(8)<<b[i].salary<<"│"<<setw(18)<<b[i].n<<"│"<<endl; } cout<<"└────┴────┴────┴────┴────┴─────────┘"<<endl; } goto cont; case 4: //数据备份 { cout<<"数据正在备份,请稍候......\n"; ofstream outfile("file.txt",ios::out);//定义输出文件流对象,打开磁盘文件"file.txt" if(! outfile) //如果打开失败,返回0值 {cerr<<"open error!\n数据备份失败!\n"<<endl; exit(1); } outfile<<"技术员备份数据如下:\n"; //技术员备份数据如下 outfile<<"┌─────┬─────┬─────┬─────┬─────┐"<<endl; outfile<<"│"<<setw(10)<<"职工号"<<"│"<<setw(10)<<"姓名"<<"│"<<setw(10)<<"性别"<<"│"<<setw(10)<<"年龄"<<"│"<<setw(10)<<"工资"<<"│"<<endl; for(i=0;i<=3;i++) {outfile<<"├─────┼─────┼─────┼─────┼─────┤"<<endl; outfile<<"│"<<setw(10)<<a[i].num<<"│"<<setw(10)<<a[i].name<<"│"<<setw(10)<<a[i].sex<<"│"<<setw(10)<<a[i].age<<"│"<<setw(10)<<a[i].salary<<"│"<<endl; } outfile<<"└─────┴─────┴─────┴─────┴─────┘"<<endl; outfile<<"---------------------------------"<<endl; outfile<<"经理备份数据如下:\n"; //经理备份数据 outfile<<"┌─────┬─────┬─────┬─────┬─────┐"<<endl; outfile<<"│"<<setw(10)<<"职工号"<<"│"<<setw(10)<<"姓名"<<"│"<<setw(10)<<"性别"<<"│"<<setw(10)<<"年龄"<<"│"<<setw(10)<<"工资"<<"│"<<endl; for(i=0;i<=3;i++) {outfile<<"├─────┼─────┼─────┼─────┼─────┤"<<endl; outfile<<"│"<<setw(10)<<c[i].num<<"│"<<setw(10)<<c[i].name<<"│"<<setw(10)<<c[i].sex<<"│"<<setw(10)<<c[i].age<<"│"<<setw(10)<<c[i].salary<<"│"<<endl; } outfile<<"└─────┴─────┴─────┴─────┴─────┘"<<endl; outfile<<"---------------------------------"<<endl; outfile<<"销售经理备份数据如下:\n"; //销售经理备份数据 outfile<<"┌─────┬─────┬─────┬─────┬─────┐"<<endl; outfile<<"│"<<setw(10)<<"职工号"<<"│"<<setw(10)<<"姓名"<<"│"<<setw(10)<<"性别"<<"│"<<setw(10)<<"年龄"<<"│"<<setw(10)<<"工资"<<"│"<<endl; for(i=0;i<=3;i++) {outfile<<"├─────┼─────┼─────┼─────┼─────┤"<<endl; outfile<<"│"<<setw(10)<<d[i].num<<"│"<<setw(10)<<d[i].name<<"│"<<setw(10)<<d[i].sex<<"│"<<setw(10)<<d[i].age<<"│"<<setw(10)<<d[i].salary<<"│"<<endl; } outfile<<"└─────┴─────┴─────┴─────┴─────┘"<<endl; outfile<<"---------------------------------"<<endl; outfile<<"销售员备份数据如下:\n"; //销售员备份数据 outfile<<"┌────┬────┬────┬────┬────┬─────────┐"<<endl; outfile<<"│"<<setw(8)<<"职工号"<<"│"<<setw(8)<<"姓名"<<"│"<<setw(8)<<"性别"<<"│"<<setw(8)<<"年龄"<<"│"<<setw(8)<<"工资"<<"│"<<setw(18)<<"所属部门经理编号"<<"│"<<endl; for(i=0;i<=7;i++) {outfile<<"├────┼────┼────┼────┼────┼─────────┤"<<endl; outfile<<"│"<<setw(8)<<b[i].num<<"│"<<setw(8)<<b[i].name<<"│"<<setw(8)<<b[i].sex<<"│"<<setw(8)<<b[i].age<<"│"<<setw(8)<<b[i].salary<<"│"<<setw(18)<<b[i].n<<"│"<<endl; } outfile<<"└────┴────┴────┴────┴────┴─────────┘"<<endl; outfile<<"---------------------------------"<<endl; outfile.close(); cout<<"数据已经成功备份。"<<endl; //数据备份成功 } goto cont; case 5:break; //退出系统 } return 0; } |
学习日记,兼职软件设计,软件修改,毕业设计。
本文出自 学习日记,转载时请注明出处及相应链接。
本文永久链接: https://www.softwareace.cn/?p=321