본문 바로가기

Programming/[C++]

[C++] 급여관리 프로그램

 

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
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
#include <Windows.h>
#include <iostream>
#include <iomanip>
#include <string>
using namespace std;
 
class Info { //Info에 대한 정보를 넣는 data 클래스
    string info;
public:
    void setInfo(string info) { this->info = info; }
    string getInfo() { return info; }
};
 
class Money { //Money에 대한 정보를 넣는 data 클래스
    float money;
public:
    void setMoney(float money) { this->money = money; }
    float getMoney() { return money; }
};
 
class Time { //Time에 대한 정보를 넣는 data 클래스
    float time;
public:
    void setTime(float time) { this->time = time; }
    float getTime() { return time; }
};
 
class Person { //Has-a관계로 Info, Money, Time의 클래스를 상속받는 클래스
               //Info
    Info name; //이름
    Info id; //사원번호
    Info phone; //전화번호
    Info account; //계좌
    Info bank; //은행
    Info address; //주소
    Info socialId; //주민등록번호호
    Info depart; //부서
    Info position; //직급
 
                   //Money
    Money monthPay; //월급
    Money found; //기본수당
    Money extend; //연장수당
    Money tax; //세금
    Money insur; //보험금
    Money totalPay; //총 급여
    Money bonus; //보너스
 
                 //Time
    Time hour; //시간
    Time day; //출근일수
    Time pvac; //유급휴가
 
public:
    //Info 
    void setName(string info) { name.setInfo(info); }
    string getName() { return name.getInfo(); }
 
    void setId(string info) { id.setInfo(info); }
    string getId() { return id.getInfo(); }
 
    void setPhone(string info) { phone.setInfo(info); }
    string getPhone() { return phone.getInfo(); }
 
    void setAccount(string info) { account.setInfo(info); }
    string getAccount() { return account.getInfo(); }
 
    void setBank(string info) { bank.setInfo(info); }
    string getBank() { return bank.getInfo(); }
 
    void setAddress(string info) { address.setInfo(info); }
    string getAddress() { return address.getInfo(); }
 
    void setSocialId(string info) { socialId.setInfo(info); }
    string getSocialId() { return socialId.getInfo(); }
 
    void setDepart(string info) { depart.setInfo(info); }
    string getDepart() { return depart.getInfo(); }
 
    void setPosition(string info) { position.setInfo(info); }
    string getPosition() { return position.getInfo(); }
 
    //Money
    void setMonthPay(float money) { monthPay.setMoney(money); }   //월급
    float getMonthPay() { return found.getMoney() * hour.getTime(); }
    //출근일수 * 시간 * 기본수당
 
    void setFound(float money) { found.setMoney(money); }   //기본수당
    float getFound() { return found.getMoney(); }
 
    void setExtend(float money) { extend.setMoney(money); }   //연장수당
    float getExtend() { return extend.getMoney(); }
 
    void setInsur(float money) { insur.setMoney(money); }   //보험금
    float getInsur() { return insur.getMoney(); }
 
    void setTotalPay(float money) { totalPay.setMoney(money); }   //총 급여
    float getTotalPay() { return monthPay.getMoney() + extend.getMoney() + bonus.getMoney(); }
    //월급 + 연장수당
    void setBonus(float money) { bonus.setMoney(money); }   //보너스
    float getBonus() { return bonus.getMoney(); }
    //Tax
    void setTax(float money) { tax.setMoney(money); }   //세금
    float getTax() { return getMonthPay() * 0.015; }
 
    //Time
    void setHour(float time) { hour.setTime(time); }   //시간
    float getHour() { return hour.getTime(); }
 
    void setDay(float time) { day.setTime(time); }   //출근일수
    float getDay() { return day.getTime(); }
 
    void setPvac(float time) { pvac.setTime(time); }   //유급휴가
    float getPvac() { return pvac.getTime(); }
};
 
class IrrManager : public Person { //Is-a관계로 Person의 클래스를 상속 받는 클래스 
                                   //계약직(알바 포함)
    float dayPay; //일급
public:
    void setDayPay(float dayPay) { this->dayPay = dayPay; }
    float getDayPay() { return dayPay; }
};
 
class FullManager : public Person { //Is-a관계로 Person의 클래스를 상속 받는 클래스
                                    //정규직
    float full; //만근수당
public:
    void setFull(float full) { this->full = full; }
    float getFull() { return full; }
};
 
class Master { //Has-a관계로 IrrManager 클래스와 FullManager 클래스를 상속 받는 클래스 
               //입력, 출력, 검색, 수정, 삭제
    IrrManager *im; //IrrManager에 대해 동적 할당
    FullManager *fm; //FullManager에 대해 동적 할당
public:
    //다음 배열로 넘어가기 위해 지정
    int countIr; //IrrManager
    int countFr; //FullManager
 
    Master() {
        im = new IrrManager[100]; //IrrManager의 크기가 100인 배열 - 한칸당 한명이 들어있음
        fm = new FullManager[100]; //FullManager의 크기가 100인 배열 - 한칸당 한명이 들어있음
        countIr = 0//초기화
        countFr = 0//초기화
    }
 
    int getCountIr() { return countIr; }
    int getCountFr() { return countFr; }
 
    int ImSearch() { //비정규직 검색 함수
        string idSearch; //사원번호 검색을 위한 변수(클래스) 지정
        cout << "사원 번호 검색 : ";
        cin >> idSearch;
        int i;
        for (i = 0; i < countIr; i++) { //현재 총 배열의 갯수(countIr) 만큼 반복 
            if (!idSearch.compare(im[i].getId())) { //입력한 사원번호가 나올때 까지 검색
                im[i].getId(); //검색한 사원번호가 있는 위치
                break;
            }
        }
        return i; //위치 반환
    }
 
    int FmSearch() { //정규직 검색 함수
        string idSearch;
        cout << "사원 번호 검색 : ";
        cin >> idSearch;
        int i;
        for (i = 0; i < countFr; i++) { //현재 총 배열의 갯수(countFr) 만큼 반복
            if (!idSearch.compare(fm[i].getId())) { //입력한 사원번호가 나올때 까지 검색
                fm[i].getId(); //검색한 사원번호가 있는 위치
                break;
            }
            else if (idSearch.compare(fm[i].getId())) {/*&& i == countFr - 1))*/
              cout << "검색 결과가 없습니다" << endl;
              break;
            };
        }
        return i; //위치 반환
    }
 
 
 
    void ImFix(int p) { //비정규직 수정 함수
                        //위치를 p에 받음
        cout << "수정할 내용 입력 : ";
        string ch;
        string imfix;
        cin >> ch;
        //수정하고 싶은 내용만 수정하게끔
        if (ch == "이름") {
            cout << "이름 입력 : ";
            cin >> imfix;
            im[p].setName(imfix);
            cout << "수정 완료" << endl;
        }
        else if (ch == "주민등록번호") {
            cout << "주민등록번호 입력 : ";
            cin >> imfix;
            im[p].setSocialId(imfix);
            cout << "수정 완료" << endl;
        }
        else if (ch == "전화번호") {
            cout << "전화번호 입력 : ";
            cin >> imfix;
            im[p].setPhone(imfix);
            cout << "수정 완료" << endl;
        }
        else if (ch == "계좌번호") {
            cout << "계좌 입력 : ";
            cin >> imfix;
            im[p].setAccount(imfix);
            cout << "수정 완료" << endl;
        }
        else if (ch == "은행") {
            cout << "은행 입력 : ";
            cin >> imfix;
            im[p].setBank(imfix);
            cout << "수정 완료" << endl;
        }
        else if (ch == "주소") {
            //cout << "주소 입력 : ";
            cin >> imfix;
            im[p].setAddress(imfix);
            cout << "수정 완료" << endl;
        }
        //else if (ch == "주민등록번호") {
        //   cout << "주민등록번호 입력 : ";
        //   cin >> imfix;
        //   im[p].setSocialId(imfix);
        //   cout << "수정 완료" << endl;
        //}
        else if (ch == "부서") {
            cout << "부서 입력 : ";
            cin >> imfix;
            im[p].setDepart(imfix);
            cout << "수정 완료" << endl;
        }
    }
 
    void FmFix(int p) { //정규직 수정 함수
                        //위치를 p에 받음
        cout << "수정할 내용 입력 : " << endl;
        string ch;
        cin >> ch;
        string fmfix;
        //수정하고 싶은 내용만 수정하게끔
        if (ch == "이름") {
            cout << "이름 입력 : ";
            cin >> fmfix;
            fm[p].setName(fmfix);
            cout << "수정 완료" << endl;
        }
        else if (ch == "주민등록번호") {
            cout << "주민등록번호 입력 : ";
            cin >> fmfix;
            fm[p].setSocialId(fmfix);
            cout << "수정 완료" << endl;
        }
        else if (ch == "전화번호") {
            cout << "전화번호 입력 : ";
            cin >> fmfix;
            fm[p].setPhone(fmfix);
            cout << "수정 완료" << endl;
        }
        else if (ch == "계좌번호") {
            cout << "계좌 입력 : ";
            cin >> fmfix;
            fm[p].setAccount(fmfix);
            cout << "수정 완료" << endl;
        }
        else if (ch == "은행") {
            cout << "은행 입력 : ";
            cin >> fmfix;
            fm[p].setBank(fmfix);
            cout << "수정 완료" << endl;
        }
        else if (ch == "주소") {
            cout << "주소 입력 : ";
            cin >> fmfix;
            fm[p].setAddress(fmfix);
            cout << "수정 완료" << endl;
        }
        /*else if (ch == "주민등록번호호") {
        cout << "주민등록번호호 입력 : ";
        cin >> fmfix;
        fm[p].setSocialId(fmfix);
        cout << "수정 완료" << endl;
        }*/
        else if (ch == "부서") {
            cout << "부서 입력 : ";
            cin >> fmfix;
            fm[p].setDepart(fmfix);
            cout << "수정 완료" << endl;
        }
        else if (ch == "직급") {
            cout << "직급 입력 : ";
            cin >> fmfix;
            fm[p].setSocialId(fmfix);
            cout << "수정 완료" << endl;
        }
    }
 
    void ImDelete() { //비정규직 삭제 함수
        string idSearch;
        cout << "삭제 할 사원 번호 : ";
        cin >> idSearch;
        for (int i = 0; i < countIr; i++) { //현재 총 배열의 갯수(countFr) 만큼 반복
            if (!idSearch.compare(im[i].getId())) { //입력한 사원번호가 나올때 까지 검색
                                                    //im[i].getId();
                countIr--//총 배열의 갯수가 하나 줄어드는것을 알기 위해 지정
                cout << "삭제 완료" << endl;
                for (i; i < countIr; i++) {//비교해서 같으면 0을 반환 고로 if안에가 0이 아니면 트루이므로 이름이 같을때 들어온다 
                    im[i] = im[i + 1]; //다음 배열에 있는 값을 바로 앞에 있는 배열의 값에 대입
                }
                break;
            }
            else if ((idSearch.compare(im[i].getId()) && i == countFr - 1)) {
                cout << "검색 결과가 없습니다" << endl;
            }
        }
    }
 
    void FmDelete() { //정규직 삭제 함수
        string idSearch;
        cout << "삭제 할 사원 번호 : ";
        cin >> idSearch;
        for (int i = 0; i < countFr; i++) { //현재 총 배열의 갯수(countFr) 만큼 반복
            if (idSearch.compare(fm[i].getId())) { //입력한 사원번호가 나올때 까지 검색
                                                    //im[i].getId();
                countFr--//총 배열의 갯수가 하나 줄어드는것을 알기 위해 지정
                cout << "삭제 완료" << endl;
                for (i; i < countFr; i++) {//비교해서 같으면 0을 반환 고로 if안에가 0이 아니면 트루이므로 이름이 같을때 들어온다 
                    im[i] = im[i + 1]; //다음 배열에 있는 값을 바로 앞에 있는 배열의 값에 대입
                }
                break;
                //입력한 사원번호를 찾으면 for문 종료
            }
            else if ((idSearch.compare(fm[i].getId()) && i == countFr - 1)) {
                cout << "검색 결과가 없습니다" << endl;
            };
        }
    }
 
    void FullInput() { //정규직 입력 함수
        string fmin; //Info 입력 - info는 string으로 지정해줌
        float fminI; //Money, Time 입력 - Money랑 Time은 float로 지정해줌
        cout << "-----------개인 정보-----------" << endl;
        cout << "사원 번호    : ";
        cin >> fmin;
        fm[countFr].setId(fmin);//countFr이 위치하고 있는 배열에 저장
        cout << "이름         : ";
        cin >> fmin;
        fm[countFr].setName(fmin);
        cout << "주민등록번호 : ";
        cin >> fmin;
        fm[countFr].setSocialId(fmin);
        cout << "은행         : ";
        cin >> fmin;
        fm[countFr].setBank(fmin);
        cout << "계좌번호     : ";
        cin >> fmin;
        fm[countFr].setAccount(fmin);
        cout << "주소         : ";
        cin >> fmin;
        fm[countFr].setAddress(fmin);
        cout << "전화번호     : ";
        cin >> fmin;
        fm[countFr].setPhone(fmin);
        cout << "부서         : ";
        cin >> fmin;
        fm[countFr].setDepart(fmin);
        cout << "직급         : ";
        cin >> fmin;
        fm[countFr].setPosition(fmin);
        cout << "-----------급여 정보-----------" << endl;
        cout << "기본수당     : ";
        cin >> fminI;
        fm[countFr].setFound(fminI);
        cout << "시간         : ";
        cin >> fminI;
        fm[countFr].setHour(fminI);
        cout << "연장수당     : ";
        cin >> fminI;
        fm[countFr].setExtend(fminI);
        cout << "출근 일수    : ";
        cin >> fminI;
        fm[countFr].setDay(fminI);
        cout << "유급 휴가    : ";
        cin >> fminI;
        fm[countFr].setPvac(fminI);
        cout << "보너스       : ";
        cin >> fminI;
        fm[countFr].setBonus(fminI);
        cout << "만근 수당    : ";
        cin >> fminI;
        fm[countFr].setFull(fminI);
        fm[countFr].setMonthPay(fm[countFr].getFound()*fm[countFr].getHour());
        countFr++;
    }
 
    void IrrInput() {
        string imin;  //Info 입력 - info는 string으로 지정해줌
        float iminI; //Money, Time 입력 - Money랑 Time은 float로 지정해줌
        cout << "-----------개인 정보-----------" << endl;
        cout << "사원 번호    : ";
        cin >> imin;
        im[countIr].setId(imin); //countIr이 위치하고 있는 배열에 저장
        cout << "이름         : ";
        cin >> imin;
        im[countIr].setName(imin);
        cout << "주민등록번호 : ";
        cin >> imin;
        im[countIr].setSocialId(imin);
        cout << "은행         : ";
        cin >> imin;
        im[countIr].setBank(imin);
        cout << "계좌번호     : ";
        cin >> imin;
        im[countIr].setAccount(imin);
        cout << "주소         : ";
        cin >> imin;
        im[countIr].setAddress(imin);
        cout << "전화         : ";
        cin >> imin;
        im[countIr].setPhone(imin);
        cout << "부서         : ";
        cin >> imin;
        im[countIr].setDepart(imin);
        cout << "직급         : ";
        cin >> imin;
        im[countIr].setPosition(imin);
        cout << "-----------급여 정보-----------" << endl;
        cout << "기본 수당    : ";
        cin >> iminI;
        im[countIr].setFound(iminI);
        cout << "일한 시간    : ";
        cin >> iminI;
        im[countIr].setHour(iminI);
        cout << "출근 일수    : ";
        cin >> iminI;
        im[countIr].setDay(iminI);
        cout << "보너스       : ";
        cin >> iminI;
        im[countIr].setBonus(iminI);
        cout << "연장수당     : ";
        cin >> iminI;
        im[countIr].setExtend(iminI);
        im[countIr].setMonthPay(im[countIr].getFound()*im[countIr].getHour());
 
        countIr++;
    }
 
    void FullPrint(int p) {
        if (p == -1) { //0부터 시작하기 때문에 정보가 없으면 -1
            cout << "정보가 없습니다" << endl;
        }
        else {
            for (int i = 0; i < countFr; i++) { //현재 총 배열의 갯수(countFr) 만큼 반복해서 전체 출력 
                cout << "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓" << endl;
                cout << "-----------개인 정보-----------" << endl;
                cout << "사원 번호     : " << fm[i].getId() << endl;
                cout << "이름          : " << fm[i].getName() << endl;
                cout << "주민등록번호  : " << fm[i].getSocialId() << endl;
                cout << "은행          : " << fm[i].getBank() << endl;
                cout << "계좌번호      : " << fm[i].getAccount() << endl;
                cout << "주소          : " << fm[i].getAddress() << endl;
                cout << "전화번호      : " << fm[i].getPhone() << endl;
                cout << "부서          : " << fm[i].getDepart() << endl;
                cout << "직급          : " << fm[i].getPosition() << endl;
                cout << "-----------급여 정보-----------" << endl;
                cout << "월급          : " << fm[i].getMonthPay() << endl;
                cout << "연장수당      : " << fm[i].getExtend() << endl;
                cout << "출근 일수     : " << fm[i].getDay() << endl;
                cout << "유급 휴가     : " << fm[i].getPvac() << endl;
                cout << "보너스        : " << fm[i].getBonus() << endl;
                cout << "만근 수당     : " << fm[i].getFull() << endl;
                cout << "-----------세금 정보-----------" << endl;
                cout << "세금          : " << fm[i].getTax() << endl;
                cout << "-----------최종 정보-----------" << endl;
                cout << "총 급여       : " << fm[i].getTotalPay() << endl;
                cout << "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛" << endl;
                cout << endl;
            }
        }
    }
 
    void IrrPrint(int p) {
        if (p == -1) { //0부터 시작하기 때문에 정보가 없으면 -1
            cout << "정보가 없습니다" << endl;
        }
        else {
            for (int i = 0; i < countIr; i++) { //현재 총 배열의 갯수(countIr) 만큼 반복해서 전체 출력
                cout << "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓" << endl;
                cout << "-----------개인 정보-----------" << endl;
                cout << "사원 번호    : " << im[i].getId() << endl;
                cout << "이름         : " << im[i].getName() << endl;
                cout << "주민등록번호 : " << im[i].getSocialId() << endl;
                cout << "은행         : " << im[i].getBank() << endl;
                cout << "계좌번호     : " << im[i].getAccount() << endl;
                cout << "주소         : " << im[i].getAddress() << endl;
                cout << "전화번호     : " << im[i].getPhone() << endl;
                cout << "부서         : " << im[i].getDepart() << endl;
                cout << "직급         : " << im[i].getPosition() << endl;
                cout << "-----------급여 정보-----------" << endl;
                cout << "월급         : " << im[i].getMonthPay() << endl;
                cout << "연장수당     : " << im[i].getExtend() << endl;
                cout << "-----------세금 정보-----------" << endl;
                cout << "세금         : " << im[i].getTax() << endl;
                cout << "-----------최종 정보-----------" << endl;
                cout << "총 급여      : " << im[i].getTotalPay() << endl;
                cout << "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛" << endl;
                cout << endl;
            }
        }
    }
 
    void FullPrintOne(int i) { //위치를 i에 받아서 그 위치에 대한 배열만 출력 (1명)
        cout << "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓" << endl;
        cout << "-----------개인 정보-----------" << endl;
        cout << "사원 번호     : " << fm[i].getId() << endl;
        cout << "이름          : " << fm[i].getName() << endl;
        cout << "주민등록번호  : " << fm[i].getSocialId() << endl;
        cout << "은행          : " << fm[i].getBank() << endl;
        cout << "계좌번호      : " << fm[i].getAccount() << endl;
        cout << "주소          : " << fm[i].getAddress() << endl;
        cout << "전화번호      : " << fm[i].getPhone() << endl;
        cout << "부서          : " << fm[i].getDepart() << endl;
        cout << "직급          : " << fm[i].getPosition() << endl;
        cout << "-----------급여 정보-----------" << endl;
        cout << "월급          : " << fm[i].getMonthPay() << endl;
        cout << "연장수당      : " << fm[i].getExtend() << endl;
        cout << "출근 일수     : " << fm[i].getDay() << endl;
        cout << "유급 휴가     : " << fm[i].getPvac() << endl;
        cout << "보너스        : " << fm[i].getBonus() << endl;
        cout << "만근 수당     : " << fm[i].getFull() << endl;
        cout << "-----------세금 정보-----------" << endl;
        cout << "세금          : " << fm[i].getTax() << endl;
        cout << "-----------최종 정보-----------" << endl;
        cout << "총 급여       : " << fm[i].getTotalPay() << endl;
        cout << "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛" << endl;
        cout << endl;
    }
 
    void IrrPrintOne(int i) { //위치를 i에 받아서 그 위치에 대한 배열만 출력 (1명)
        cout << "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓" << endl;
        cout << "-----------개인 정보-----------" << endl;
        cout << "사원 번호    : " << im[i].getId() << endl;
        cout << "이름         : " << im[i].getName() << endl;
        cout << "주민등록번호 : " << im[i].getSocialId() << endl;
        cout << "은행         : " << im[i].getBank() << endl;
        cout << "계좌번호     : " << im[i].getAccount() << endl;
        cout << "주소         : " << im[i].getAddress() << endl;
        cout << "전화번호     : " << im[i].getPhone() << endl;
        cout << "부서         : " << im[i].getDepart() << endl;
        cout << "직급         : " << im[i].getPosition() << endl;
        cout << "-----------급여 정보-----------" << endl;
        cout << "월급         : " << im[i].getMonthPay() << endl;
        cout << "연장수당     : " << im[i].getExtend() << endl;
        cout << "-----------세금 정보-----------" << endl;
        cout << "세금         : " << im[i].getTax() << endl;
        cout << "-----------최종 정보-----------" << endl;
        cout << "총 급여      : " << im[i].getTotalPay() << endl;
        cout << "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛" << endl;
        cout << endl;
    }
};
 
void main() {
    Master m;
    string password;
    int pos = 0;
    int sel = 0;
    int choose = 0;
    cout << " ⊂_ \                       " << endl;
    cout << "    \\Λ_Λ                  " << endl;
    cout << "     \ ('ㅅ') 두둠칫         " << endl;
    cout << "        > ⌒ \               " << endl;
    cout << "       /     へ\              " << endl;
    cout << "      /   / \\             " << endl;
    cout << "     /   ノ \_つ            " << endl;
    cout << "    /   / 두둠칫              " << endl;
    cout << "   / /  |                     " << endl;
    cout << "  (  (   \                    " << endl;
    cout << "  |  |  、\                   " << endl;
    cout << "  | /    \⌒)                  " << endl;
    cout << "  | |     ) /                  " << endl;
    cout << "`ノ )   L/                    " << endl;
    while (sel != 3) {
        cout << "메뉴" << endl;
        cout << "1.사용자  2.관리자  3.끝내기" << endl;
        cout << "선택 : ";
        cin >> sel;
        switch (sel) {
        case 1: { //사용자
            while (choose != 2) {
                cout << "1.조회  2.메뉴" << endl;
                int user;
                cout << "선택 : ";
                cin >> user;
                switch (user) {
                case 1: { //조회
                    cout << "1.정규직  2.계약직" << endl;
                    cout << "선택 : ";
                    int find;
                    cin >> find;
                    switch (find) {
                    case 1: {
                        m.FullPrintOne(m.FmSearch()); //위치함수에서 실행 후, 1명 출력
                    }break;
 
                    case 2: {
                        m.IrrPrintOne(m.ImSearch()); //위치함수에서 실행 후, 1명 출력
                    }break;
                    }
                }break;
 
                case 2: { //메뉴
                    cout << "메뉴로 돌아갑니다" << endl;
                }break;
 
                default:
                    cout << "잘못된 입력입니다" << endl;
                }
                break;
            }
            break;
        case 2: {//관리자
            cout << "비밀번호 입력 : ";
            cin >> password;
            system("cls");
            if (password != "1234") {
                cout << "비밀번호가 틀렸습니다" << endl;
            }
            else {
                int manage = 1;
                while (manage != 6) {
                    cout << "               메뉴를 선택하세요" << endl;
                    cout << "1.입력  2.출력  3.검색  4.수정  5.삭제  6.메뉴" << endl;
                    cout << "선택 : ";
                    cin >> manage;
                    switch (manage) {
                    case 1: { //입력
                        cout << "1.정규직  2.계약직  3.돌아가기" << endl;
                        cout << "선택 : ";
                        int input = 0;
                        cin >> input;
                        switch (input) {
                        case 1: { //정규직 입력
                            system("cls");
                            m.FullInput();
                            cout << endl << "   정규직 사원 입력완료" << endl;
                            Sleep(1000);
                            system("cls");
                        }break;
 
                        case 2: {//계약직 입력
                            system("cls");
                            m.IrrInput();
                            cout << endl << "   계약직 사원 입력완료" << endl;
                            Sleep(1000);
                            system("cls");
                        }break;
 
                        case 3: {//돌아가기
                        }break;
 
                        }
                        break;
                    }
 
                    case 2: {//출력
                        cout << "1.정규직  2.계약직" << endl;
                        cout << "선택 : ";
                        int printC;
                        cin >> printC;
                        switch (printC) {
                        case 1: {
                            cout.setf(ios::left);
                            cout << setw(45<< "---------------정규직 사원 명단" << endl;
                            cout << endl;
                            m.FullPrint(m.getCountFr()); //입력한 갯수를 받아서, 그 갯수만큼 출력
                        }break;
 
                        case 2: {
                            cout.setf(ios::left);
                            cout << setw(45<< "---------------계약직 사원 명단" << endl;
                            cout << endl;
                            m.IrrPrint(m.getCountIr()); //입력한 갯수를 받아서, 그 갯수만큼 출력
                        }break;
                        }
                    }break;
 
                    case 3: {//검색
                        cout << "1.정규직  2.계약직" << endl;
                        cout << "선택 : ";
                        int find;
                        cin >> find;
                        system("cls");
                        switch (find) {
                        case 1: {
                            m.FullPrintOne(m.FmSearch());
                        }break;
 
                        case 2: {
                            m.IrrPrintOne(m.ImSearch());
                        }break;
 
                        }
                    }break;
 
                    case 4: {//수정
                        cout << "1.정규직  2.계약직" << endl;
                        cout << "선택 : ";
                        int fix;
                        cin >> fix;
                        switch (fix) {
                        case 1: {
                            m.FmFix(m.FmSearch()); //위치함수에서 실행 후, 1명 출력
                        }break;
 
                        case 2: {
                            m.ImFix(m.ImSearch()); //위치함수에서 실행 후, 1명 출력
                        }break;
 
                        }
                    }break;
 
                    case 5: {//삭제
                        cout << "1.정규직  2.계약직" << endl;
                        cout << "선택 : ";
                        int del;
                        cin >> del;
                        switch (del) {
                        case 1: {
                            m.FmDelete();
                        }break;
                        case 2: {
                            m.ImDelete();
                        }break;
                        }
                    } break;
 
                    case 6: {//돌아가기
                        cout << "메뉴로 돌아갑니다" << endl;
 
                    }break;
 
                    }
                }
            }
            break;
        }
                break;
        case 3: {
            cout << "종료됩니다" << endl;
            break;
        }
        }
        }
    }
}
cs

 

'Programming > [C++]' 카테고리의 다른 글

[C++] Reference(레퍼런스)  (0) 2018.03.21
[C++] 순수 가상 함수  (0) 2018.03.21
[C++] Overloading(오버로딩)  (0) 2018.03.21
[C++] 포함 오브젝트(has ~a)  (0) 2018.03.21
[C++] Friend 함수 (프렌드 함수)  (0) 2018.03.21