عرض سلام و خسته نباشید خدمت تمامی کاربیران عزیز سایت آموزش برنامه نویسی سورس باران. توی این مطلب سورس سیستم مدیریت کارمندان و وام آن ها به زبان سی پلاس پلاس رو براتون گذاشتیم. با مراجعه به ادامه مطلب میتونید این سورس رو دانلود و مشاهده نمایید.
جهت دانلود سورس سیستم مدیریت کارمندان و وام آن ها به زبان سی پلاس پلاس به ادامه مطلب مراجعه نمایید.
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 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 |
#include<iostream.h> #include<conio.h> #include<fstream.h> #include<stdlib.h> #include<stdio.h> #include<string.h> struct per{ int code; char name[20]; char fam[25]; char semat[20]; }p; struct ho{ int code; int hp; int ezafeh; int padash; char name[20]; }h; struct vam{ int code; char name[20]; char fam[25]; int mvam; }v; void search(); void searchp(); void searchh(); void searchv(); void change(); void changep(); void changev(); void changeh(); void delet(); void delhogh(void); void delper(void); void delvam(void); void sinputper(void); void sinputh(void); void sinputv(void); void inputper(void); void inputh(void); void inputv(void); void inputp(void); void insho(void); void input(void); void main(){ input(); } void inputp(void){ int selecti; clrscr(); cout<<" <input> "; cout<<" \t\t\t\t\t \t -------------------\n"; cout<<" |1.moshakhasat persenel |\n"; cout<<" |2.etelaat hoghughi |\n"; cout<<" |3.dariaft vam |\n"; cout<<" |4.exit |\n" ; cout<<" | ----------------------|\n"; cout<<" |SELECT a NUMBER: |\n"; cout<<" -----------------------\n"; gotoxy(50,8);cin>>selecti; switch(selecti){ case 1: inputper(); break; case 2: inputh(); break; case 3: inputv(); break; case 4:exit(1); break; default : cout<<"Error in number" ; } } void input(){ int select; cout<<" <MAIN MENU> \n"; cout<<" -----------------------\n"; cout<<" |1.INPUT DATA |\n"; cout<<" |2.SEARCH |\n"; cout<<" |3.DELETE |\n"; cout<<" |4.CHANGE |\n" ; cout<<" |5.SHOW LIST |\n" ; cout<<" |6.EXIT |\n" ; cout<<" | ----------------------|\n"; cout<<" |SELECT a NUMBER: |\n"; cout<<" -----------------------\n"; gotoxy(50,10);cin>>select; switch(select){ case 1: inputp(); break; case 2: search(); break; case 3: delet(); break; case 4: change(); break; case 5: insho(); break; case 6:exit(1); default:cout<<"error in number"; } } void inputper(void){ clrscr(); char ch; ofstream fp("persenel.dat",ios::ate|ios::binary); if (!fp){cout<<"not found the file";getche();return;} while(1){ cout<<"Enter Code= "<<"\n"; cin>>p.code; cout<<"Enter Fmily= "<<"\n"; gets(p.fam); cout<<"Enter semat= "<<"\n"; gets(p.semat); cout<<"Enter Name= "<<"\n"; gets(p.name); fp.write((char*)&p,sizeof(struct per)); cout<<"continue ? (Y/N)"<<"\n"; ch=getche(); cout<<"\n"; if(ch =='n'||ch=='N'){ clrscr(); fp.close(); inputp(); } } } void inputh(void){ clrscr(); char ch; ofstream fh("hoghughi.dat",ios::ate|ios::binary); if (!fh){cout<<"not found the file";getche();return;} while(1){ cout<<"Enter Code= "<<"\n"; cin>>h.code; cout<<"Enter hoghugh paie= "<<"\n"; cin>>h.hp; cout<<"Enter padash= "<<"\n"; cin>>h.padash; cout<<"Enter ezafeh kari= "<<"\n"; cin>>h.ezafeh; cout<<"Enter name= "<<"\n"; gets(h.name); fh.write((char*)&h,sizeof(struct ho)); cout<<"continue ? (Y/N)"<<"\n"; ch=getche(); cout<<"\n"; if(ch =='n'||ch=='N'){ clrscr(); fh.close(); inputp();} } } void inputv(void){ clrscr(); char ch; ofstream fv("vamp.dat",ios::ate|ios::binary); if (!fv){cout<<"not found the file";getche();return;} while(1){ cout<<"Enter Code= "<<"\n"; cin>>v.code; cout<<"Enter Name= "<<"\n"; gets(v.name); cout<<"Enter Fmily= "<<"\n"; gets(v.fam); cout<<"Enter mablagh vam= "<<"\n"; cin>>v.mvam; fv.write((char*)&v,sizeof(struct vam)); cout<<"continue ? (Y/N)"<<"\n"; ch=getche(); cout<<"\n"; if(ch =='n'||ch=='N'){ clrscr(); fv.close(); inputp();} } } void insho(void){ int selectb; clrscr(); cout<<" <DISPLAY> \n"; cout<<" -----------------------\n"; cout<<" |1.moshakhasat persenel |\n"; cout<<" |2.etelaat hoghughi |\n"; cout<<" |3.dariaft vam |\n"; cout<<" |4.exit |\n" ; cout<<" | ----------------------|\n"; cout<<" |SELECT a NUMBER: |\n"; cout<<" -----------------------\n"; gotoxy(50,8);cin>>selectb; switch(selectb){ case 1: sinputper(); break; case 2: sinputh(); break; case 3: sinputv(); break; case 4: exit(1); break; default : cout<<"Error in number" ; } } void sinputper(void){ clrscr(); ifstream sip("persenel.dat",ios::in|ios::binary); while(sip.read((char *)&p,sizeof(struct per))){ cout<<"code= "<<p.code<<"\n"; cout<<"name= "<<p.name<<"\n"; cout<<"family= "<<p.fam<<"\n"; cout<<"semat= "<<p.semat<<"\n"; cout<<"-----------------------next user-------------------"<<"\n"; } sip.close(); } void sinputh(void){ clrscr(); ifstream sho("hoghughi.dat",ios::in|ios::binary); while(sho.read((char *)&h,sizeof(struct ho))){ cout<<"code= "<<h.code<<"\n"; cout<<"name= "<<h.name<<"\n"; cout<<"hoghugh paie= "<<h.hp<<"\n"; cout<<"ezafeh kari= "<<h.ezafeh<<"\n"; cout<<"padash= "<<h.padash<<"\n"; cout<<"-----------------------next user-------------------"<<"\n"; } sho.close(); } void sinputv(void){ clrscr(); ifstream sva("vamp.dat",ios::in|ios::binary); while(sva.read((char *)&v,sizeof(struct vam))){ cout<<"code= "<<v.code<<"\n"; cout<<"name= "<<v.name<<"\n"; cout<<"family= "<<v.fam<<"\n"; cout<<"mablagh vam= "<<v.mvam<<"\n"; cout<<"-----------------------next user-------------------"<<"\n"; } sva.close(); } void delet(){ int select; clrscr(); cout<<" <DELETE> \n"; cout<<" ----------------------- \n"; cout<<" |1.moshakhasat persenel |\n"; cout<<" |2.etelaat hoghughi |\n"; cout<<" |3.dariaft vam |\n"; cout<<" |4.Exit |\n"; cout<<" ----------------------- \n"; cout<<" |select: |\n"; cout<<" -----------------------\n"; gotoxy(50,8); cin>>select; switch(select){ case 1 : delper(); break; case 2: delhogh(); break; case 3:delvam(); break; case 4:exit(1);} } void delper(){ clrscr(); int id,find=0; ofstream temp("temp.dat",ios::out|ios::binary); ifstream pf("persenel.dat",ios::in|ios::binary); cout<<"enter code to delete:";cin>>id; while(pf.read((char *)&p,sizeof(struct per))) { if(p.code==id) find=1; else temp.write((char *)&p,sizeof(struct per)); } pf.close();temp.close(); if(find==1){ remove("persenel.dat"); rename("temp.dat","persenel.dat"); } else remove("temp.dat"); delet(); } void delhogh(){ clrscr(); int id,find=0; ofstream temp("temp.dat",ios::out|ios::binary); ifstream hf("hoghughi.dat",ios::in|ios::binary); cout<<"enter code to delete:";cin>>id; while(hf.read((char *)&h,sizeof(struct ho))) { if(h.code==id) find=1; else temp.write((char *)&h,sizeof(struct ho)); } hf.close();temp.close(); if(find==1){ remove("hoghughi.dat"); rename("temp.dat","hoghughi.dat"); } else remove("temp.dat"); delet(); } void delvam(){ clrscr(); int id,find=0; ofstream temp("temp.dat",ios::out|ios::binary); ifstream vf("vamp.dat",ios::in|ios::binary); cout<<"enter code to delete:";cin>>id; while(vf.read((char *)&v,sizeof(struct vam))) { if(v.code==id) find=1; else temp.write((char *)&v,sizeof(struct vam)); } vf.close();temp.close(); if(find==1){ remove("vamp.dat"); rename("temp.dat","vamp.dat"); } else remove("temp.dat"); delet(); } void change(){ int select; clrscr(); cout<<" <change> \n"; cout<<" ----------------------- \n"; cout<<" |1.moshakhasat persenel |\n"; cout<<" |2.etelaat hoghughi |\n"; cout<<" |3.dariaft vam |\n"; cout<<" |4.Exit |\n"; cout<<" ----------------------- \n"; cout<<" |select: |\n"; cout<<" -----------------------\n"; gotoxy(50,8); cin>>select; switch(select){ case 1 : changep(); break; case 2: changeh(); break; case 3: changev(); break; case 4:exit(1); } } void changep(){ int id;long int n=0; clrscr(); fstream pf("persenel.dat",ios::in|ios::out|ios::binary); cout<<"enter code to change:";cin>>id; while(pf.read((char *)&p,sizeof(struct per))) if(p.code==id){ cout<<"code= "<<p.code<<"\n"; cout<<"name= "<<p.name<<"\n"; cout<<"family= "<<p.fam<<"\n"; cout<<"semat= "<<p.semat<<"\n"; cout<<"----------new data--------------\n"; cout<<"code:";cin>>p.code; cout<<"name:";gets(p.name); cout<<"family= ";cin>>p.fam; cout<<"semat= ";cin>>p.semat; n=pf.tellg(); pf.seekp(n-sizeof(struct per),ios::beg); pf.write((char *)& p,sizeof(struct per)); } pf.close(); } void changeh(){ int id;long int n=0; clrscr(); fstream hf("hoghughi.dat",ios::in|ios::out|ios::binary); cout<<"enter code to change:";cin>>id; while(hf.read((char *)&h,sizeof(struct ho))) if(h.code==id){ cout<<" code= "<<h.code<<"\n"; cout<<"hoghugh paie= "<<h.hp<<"\n"; cout<<"ezafeh= "<<h.ezafeh<<"\n"; cout<<"padash= "<<h.padash<<"\n"; cout<<"name= "<<h.name<<"\n"; cout<<"----------new data--------------\n"; cout<<"code:";cin>>h.code; cout<<"hoghugh paie= ";cin>>h.hp; cout<<"ezafeh kar= ";cin>>h.ezafeh; cout<<"padash= ";cin>>h.padash; cout<<"name:";gets(h.name); n=hf.tellg(); hf.seekp(n-sizeof(struct ho),ios::beg); hf.write((char *)& h,sizeof(struct ho)); } hf.close(); } void changev(){ int id;long int n=0; clrscr(); fstream vf("vamp.dat",ios::in|ios::out|ios::binary); cout<<"enter code to change:";cin>>id; while(vf.read((char *)&v,sizeof(struct vam))) if(v.code==id){ cout<<" code= "<<v.code<<"\n"; cout<<"name= "<<v.name<<"\n"; cout<<"family= "<<v.fam<<"\n"; cout<<"mablagh vam= "<<v.mvam<<"\n"; cout<<"----------new data--------------\n"; cout<<"code:";cin>>v.code; cout<<"name:";gets(v.name); cout<<"family= ";cin>>v.fam; cout<<"mablagh vam= ";cin>>v.mvam; n=vf.tellg(); vf.seekp(n-sizeof(struct vam),ios::beg); vf.write((char *)& v,sizeof(struct vam)); } vf.close(); } void search(){ int select; clrscr(); cout<<" <search> \n"; cout<<" ----------------------- \n"; cout<<" |1.moshakhasat persenel |\n"; cout<<" |2.etelaat hoghughi |\n"; cout<<" |3.dariaft vam |\n"; cout<<" |4.Exit |\n"; cout<<" ----------------------- \n"; cout<<" |select: |\n"; cout<<" -----------------------\n"; gotoxy(50,8); cin>>select; switch(select){ case 1 : searchp(); break; case 2: searchh(); break; case 3: searchv(); break; case 4:exit(1); } } void searchp(void){ clrscr(); int key; cout<<"enter code to search:";cin>>key; ifstream pf("persenel.dat",ios::in|ios::binary); if(!pf){cout<<"can't open";getch();return;} while(pf.read((char *)&p,sizeof(struct per))) if(p.code==key){ cout<<"code= "<<p.code<<"\n"; cout<<"name= "<<p.name<<"\n"; cout<<"family= "<<p.fam<<"\n"; cout<<"semat= "<<p.semat<<"\n"; cout<<"-----------------------------\n"; } getch(); pf.close(); } void searchv(void){ clrscr(); int key; cout<<"enter code to search:";cin>>key; ifstream vf("vamp.dat",ios::in|ios::binary); if(!vf){cout<<"can't open";getch();return;} while(vf.read((char *)&v,sizeof(struct vam))) if(v.code==key){ cout<<"code= "<<v.code<<"\n"; cout<<"name= "<<v.name<<"\n"; cout<<"family= "<<v.fam<<"\n"; cout<<"mablagh vam= "<<v.mvam<<"\n"; cout<<"-----------------------------\n"; } getch(); vf.close(); } void searchh(void){ clrscr(); int key; cout<<"enter code to search:";cin>>key; ifstream hf("hoghughi.dat",ios::in|ios::binary); if(!hf){cout<<"can't open";getch();return;} while(hf.read((char *)&h,sizeof(struct ho))) if(h.code==key){ cout<<"code= "<<h.code<<"\n"; cout<<"name= "<<h.name<<"\n"; cout<<"hoghugh paie= "<<h.hp<<"\n"; cout<<"ezafeh kar= "<<h.ezafeh<<"\n"; cout<<"padash= "<<h.padash<<"\n"; cout<<"-----------------------------\n"; } getch(); hf.close(); } |
راستی! برای دریافت مطالب جدید در کانال تلگرام یا پیج اینستاگرام سورس باران عضو شوید.
آموزش انیمیشن سازی دو بعدی با موهو – خلق انیمیشن های خلاقانه شبیه دیرین دیرین
دانلود با لینک مستقیم
- حجم فايل : 47 کیلوبایت
- منبع : سورس باران
- انتشار: ۲۷ شهریور ۱۳۹۳
دسته بندی موضوعات
- آموزش ارز دیجیتال
- آموزش برنامه نویسی
- آموزش متنی برنامه نویسی
- اطلاعیه و سایر مطالب
- پروژه برنامه نویسی
- رپورتاژ
- فروشگاه
- فیلم های آموزشی
- ++C
- ADO.NET
- Adobe Flash
- Ajax
- AngularJS
- apache
- ARM
- Asp.Net
- ASP.NET MVC
- AVR
- Bootstrap
- CCNA
- CCNP
- CMD
- CSS
- Dreameaver
- EntityFramework
- Go
- HTML
- IOS
- jquery
- Linq
- Mysql
- Oracle
- PHP
- PHPMyAdmin
- Rational Rose
- silver light
- SQL Server
- Stimulsoft Reports
- Telerik
- UML
- VB.NET&VB6
- WPF
- Xml
- آموزش های پروژه محور
- اتوکد
- الگوریتم تقریبی
- امنیت
- اندروید
- اندروید استودیو
- بک ترک
- بیسیک فور اندروید
- پایتون
- جاوا
- جاوا اسکریپت
- جوملا
- دلفی
- دوره های رایگان پیشنهادی
- زامارین
- سئو
- ساخت CMS
- سی شارپ
- شبکه و مجازی سازی
- طراحی الگوریتم
- طراحی بازی
- طراحی وب
- فتوشاپ
- فریم ورک codeigniter
- فلاتر
- کانستراکت
- کریستال ریپورت
- لاراول
- معماری کامپیوتر
- مهندسی اینترنت
- هوش مصنوعی
- یونیتی
- کتاب های آموزشی
- Android
- ASP.NET
- AVR
- LINQ
- php
- Workflow
- اچ تی ام ال
- بانک اطلاعاتی
- برنامه نویسی سوکت
- برنامه نویسی موبایل
- پاسکال
- پایان نامه
- پایتون
- جاوا
- جاوا اسکریپت
- جی کوئری
- داده کاوی
- دلفی
- رباتیک
- سئو
- سایر کتاب ها
- سخت افزار
- سی اس اس
- سی پلاس پلاس
- سی شارپ
- طراحی الگوریتم
- فتوشاپ
- مقاله
- مهندسی نرم افزار
- هک و امنیت
- هوش مصنوعی
- ویژوال بیسیک
- نرم افزار و ابزار برنامه نویسی
- وردپرس