-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemployee.c
425 lines (376 loc) · 13.8 KB
/
employee.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
#include <stdio.h>
#include <string.h>
// 직원 한 명에 대한 이름, 출퇴근, 휴게 시간 데이터 저장할 구조체 정의
typedef struct{
char name[100];
int month, day;
int in_hour, in_minute;
int out_hour, out_minute;
int rest_hour, rest_minute;
} Employee;
int createEmployee(Employee *a);
void readEmployee(Employee a);
void updateEmployee(Employee *a);
int deleteEmployee(Employee *a);
void listEmployee(Employee *a,int count);
void saveData(Employee *a, int count);
int loadData(Employee *a);
int selectMenu();
int selectDataNo(Employee *e, int count);
void showInTime(Employee *e, int count);
void showOutTime(Employee *e, int count);
void showInTime_date(Employee *e, int count);
void showOutTime_date(Employee *e, int count);
void searchTime(Employee *e, int count);
void calculateDailyWage(Employee *e, int count);
int createEmployee(Employee *a){
char name[100] ;
printf("날짜입력 ex) 7월5일 -> 7/5\n");
printf("날짜: ");
scanf("%d/%d", &a->month, &a->day);
printf("이름을 입력하세요: ");
scanf("%s", a->name);
printf("\n");
printf("시간은 24시 기준으로 입력 ex)오후 7시-> 19:00\n");
printf("출근시간(6시~10시까지): ");
scanf("%d:%d", &a->in_hour, &a->in_minute);
printf("퇴근시간(17시~21시까지): ");
scanf("%d:%d", &a->out_hour, &a->out_minute);
printf("휴식시간(10분->00:10): ");
scanf("%d:%d", &a->rest_hour, &a->rest_minute);
return 1;
}
void readEmployee(Employee a){
printf("\n%d월%d일\n", a.month, a.day);
printf("이름: %s\n", a.name);
printf("출근시간: %d시%d분\n", a.in_hour, a.in_minute);
printf("퇴근시간: %d시%d분\n", a.out_hour, a.out_minute);
printf("휴식시간: %d시%d분\n", a.rest_hour, a.rest_minute);
}
void listEmployee(Employee* a, int count){
for(int i=0; i<count; i++){
if(a[i].month ==0) continue;
printf("%d번\n", i+1);
readEmployee(a[i]);
printf("\n");
}
}
int selectDataNo(Employee* a, int count){
int no =0;
listEmployee(a, count);
printf("번호는? (취소:0)");
scanf("%d", &no);
return no;
}
void updateEmployee(Employee* a){
printf("날짜입력 ex) 7월5일 -> 7/5\n");
printf("날짜: ");
scanf("%d/%d", &a->month, &a->day);
printf("이름을 입력하세요: ");
scanf("%s", a->name);
printf("\n");
printf("시간은 24시 기준으로 입력 ex)오후 7시 -> 19:00\n");
printf("출근시간(6시~10시까지): ");
scanf("%d:%d", &a->in_hour, &a->in_minute);
printf("퇴근시간(17시~21시까지): ");
scanf("%d:%d", &a->out_hour, &a->out_minute);
printf("휴식시간(10분->00:10): ");
scanf("%d:%d", &a->rest_hour, &a->rest_minute);
}
int deleteEmployee(Employee *a){
a->month = 0;
return 1;
}
void saveData(Employee *a, int count){
FILE *fp;
fp = fopen("employee.txt", "wt");
for(int i=0; i<count ; i++){
if(a[i].month ==0) continue;
fprintf(fp, "%s ", a[i].name);
fprintf(fp, "%d %d ", a[i].month, a[i].day);
fprintf(fp, "%d %d ", a[i].in_hour, a[i].in_minute);
fprintf(fp, "%d %d ", a[i].out_hour, a[i].out_minute);
fprintf(fp, "%d %d\n", a[i].rest_hour, a[i].rest_minute);
}
fclose(fp);
printf("저장됨\n");
}
int loadData(Employee *a){
int count=0;
FILE *fp;
fp = fopen("employee.txt", "rt");
if(fp == NULL){
printf("파일 없음\n");
return count;
}
for(int i=0; i<100; i++){
if(feof(fp)) break;
fscanf(fp, "%s ", a[i].name);
fscanf(fp, "%d %d ", &a[i].month, &a[i].day);
fscanf(fp, "%d %d ", &a[i].in_hour, &a[i].in_minute);
fscanf(fp, "%d %d ", &a[i].out_hour, &a[i].out_minute);
fscanf(fp, "%d %d\n", &a[i].rest_hour, &a[i].rest_minute);
count++;
}
fclose(fp);
printf("로딩 성공!\n");
return count;
}
void calculateDailyWage(Employee *e, int count){
char search[20];
int wage;
int working_time;
printf("일급을 검색할 직원의 이름을 입력하세요 : ");
printf("\t(일급은 최저시급으로 계산됩니다. 현재 최저시급: 9,160원)\n");
scanf("%s", search);
for(int i = 0; i<count; i++){
if(e[i].month == 0) continue;
if(strstr(e[i].name, search)){
working_time = ((e[i].out_hour*60 + e[i].out_minute) - (e[i].in_hour * 60 + e[i].in_minute)) - (e[i].rest_hour*60 + e[i].rest_minute);
working_time /= 60;
wage = 9160 * (working_time);
printf("직원 %s의 %d월 %d일의 하루 임금은 %d원 입니다.\n",e[i].name, e[i].month, e[i].day, wage);
}
}
}
void searchTime(Employee *e, int count){
int scnt = 0;
char search[20];
printf("출퇴근 시간이 언제인지 검색할 직원의 이름을 입력하세요 : ");
scanf("%s", search);
for(int i = 0; i<count; i++){
if(e[i].month == 0) continue;
if(strstr(e[i].name, search)){
readEmployee(e[i]);
scnt++;
}
}
if(scnt == 0)
printf("=> 검색된 데이터 없음! \n");
}
void showInTime(Employee *e, int count){
printf("\n---- 출근 시간 시간별 통계 ----\n");
printf(" (오전 6~7시, 7~8시, 8~9시, 9~10시로 나누어서 결과 보여줌)\n");
char mark = '*';
for (int time = 6; time <= 9; time++){ // 6시부터 10시까지 한시간 간격으로 출근한 사람들 데이터 출력
int cnt = 0;
for(int i=0; i<count; i++){
if( e[i].month ==0 ) continue;
if( e[i].in_hour == time){
cnt++;
}
}
printf("[ 오전 %d시 ~ %d시 ]에 출근한 사람 수 : %d\n ", time, time+1, cnt);
for(int i = 0; i < cnt; i++)
printf("%c", mark);
printf("\n\t:");
for(int i=0; i<count; i++){
if( e[i].month ==0 ) continue;
if( e[i].in_hour == time){
printf("%s ",e[i].name);
}
}
printf("\n");
}
printf("\n");
}
void showOutTime(Employee *e, int count){
printf("\n---- 퇴근 시간 시간별 통계 ----\n");
printf(" (오후 5~6시, 6~7시, 7~8시, 8시~9시로 나누어서 결과 보여줌)\n");
char mark = '*';
for (int time = 5; time <= 8; time++){ // 5시부터 9시까지 한시간 간격으로 출근한 사람들 데이터 출력
int cnt = 0;
for(int i=0; i<count; i++){
if( e[i].month ==0 ) continue;
if( e[i].out_hour-12 == time){ // 18시는 오후 6시임(18-12 = 6)
cnt++;
}
}
printf("[ 오후 %d시 ~ %d시 ]에 퇴근한 사람 수 : %d\n ", time, time+1, cnt);
for(int i = 0; i < cnt; i++)
printf("%c", mark);
printf("\n\t:");
for(int i=0; i<count; i++){
if( e[i].month ==0 ) continue;
if( e[i].out_hour-12 == time){
printf("%s ",e[i].name);
}
}
printf("\n");
}
printf("\n");
}
void showInTime_date(Employee *e, int count){
int month, day;
printf("어느 날짜의 출근 시간 통계를 보고싶은지 날짜 입력 ( ex) 7월5일 -> 7/5 ): ");
scanf("%d/%d", &month, &day);
printf("\n---- %d월 %d일 출근 시간 시간별 통계 ----\n", month, day);
printf(" (오전 6~7시, 7~8시, 8~9시, 9~10시로 나누어서 결과 보여줌)\n");
char mark = '*';
for (int time = 6; time <= 9; time++){ // 6시부터 10시까지 한시간 간격으로 출근한 사람들 데이터 출력
int cnt = 0;
for(int i=0; i<count; i++){
if( e[i].month ==0 ) continue;
if( e[i].month == month && e[i].day == day){
if( e[i].in_hour == time){
cnt++;
}
}
}
printf("[ 오전 %d시 ~ %d시 ]에 출근한 사람 수 : %d\n ", time, time+1, cnt);
for(int i = 0; i < cnt; i++)
printf("%c", mark);
printf("\n\t:");
for(int i=0; i<count; i++){
if( e[i].month ==0 ) continue;
if( e[i].month == month && e[i].day == day){
if( e[i].in_hour == time){
printf("%s ",e[i].name);
}
}
}
printf("\n");
}
printf("\n");
}
void showOutTime_date(Employee *e, int count){
int month, day;
printf("어느 날짜의 퇴근 시간 통계를 보고싶은지 날짜 입력 ( ex) 7월5일 -> 7/5 ): ");
scanf("%d/%d", &month, &day);
printf("\n---- %d월 %d일 퇴근 시간 시간별 통계 ----\n", month, day);
printf(" (오후 5~6시, 6~7시, 7~8시, 8시~9시로 나누어서 결과 보여줌)\n");
char mark = '*';
for (int time = 5; time <= 8; time++){ // 5시부터 9시까지 한시간 간격으로 출근한 사람들 데이터 출력
int cnt = 0;
for(int i=0; i<count; i++){
if( e[i].month ==0 ) continue;
if( e[i].month == month && e[i].day == day){
if( e[i].out_hour-12 == time){ // 18시는 오후 6시임(18-12 = 6)
cnt++;
}
}
}
printf("[ 오후 %d시 ~ %d시 ]에 퇴근한 사람 수 : %d\n ", time, time+1, cnt);
for(int i = 0; i < cnt; i++)
printf("%c", mark);
printf("\n\t:");
for(int i=0; i<count; i++){
if( e[i].month ==0 ) continue;
if( e[i].month == month && e[i].day == day){
if( e[i].out_hour-12 == time){ // 18시는 오후 6시임(18-12 = 6)
printf("%s ",e[i].name);
}
}
}
printf("\n");
}
printf("\n");
}
int selectMenu(){
int menu;
printf("\n*** 직원들 출퇴근 관리 시스템 ***\n");
printf("============ 메 뉴 ===========\n\n");
printf("1. 등록된 직원 출퇴근 정보 조회\n");
printf("2. 직원 출퇴근 정보 추가\n");
printf("3. 직원 출퇴근 정보 수정\n");
printf("4. 직원 출퇴근 정보 삭제\n");
printf("5. 등록된 직원 출퇴근 정보 저장\n");
printf("6. 출근 시간 시간별 통계\n");
printf("7. 퇴근 시간 시간별 통계\n");
printf("8. 직원 출퇴근 시간 검색\n");
printf("9. 직원 일급 계산\n");
printf("0. 프로그램 종료\n\n");
printf("\n================================\n");
printf("=> 원하는 메뉴는? ");
scanf("%d", &menu);
return menu;
}
int askDate(){
int ask;
printf("특정 날짜의 통계를 보고 싶다면 1을, 날짜와 상관없는 전체 통계를 보고싶다면 0을 입력해주세요. : ");
scanf("%d", &ask);
return ask;
}
int main(void){
Employee elist[100]; // 100명의 직원 관리
int curcount=0;
int count = 0, menu;
count = loadData(elist);
curcount=count;
while (1){
menu = selectMenu();
getchar();
if(menu == 0) break;
if(menu == 1 || menu ==3 || menu == 4){
if (count==0){
printf("데이터가 없습니다.\n");
continue;
}
}
if(menu == 1) listEmployee(elist,curcount);
else if (menu == 2) {
count+=createEmployee(&elist[curcount++]);
}
else if (menu == 3) {
int no=selectDataNo(elist, curcount);
if(no==0){
printf("=>취소됨!");
continue;
}
updateEmployee(&elist[no-1]);
}
else if (menu == 4) {
int no=selectDataNo(elist, curcount);
if(no==0){
printf("=>취소됨!");
continue;
}
int deleteok;
printf("정말로 삭제하시겠습니까?(삭제:1)");
scanf("%d",&deleteok);
if(deleteok == 1){
if(deleteEmployee(&elist[no-1])) count --;
}
}
else if (menu == 5){
if (count==0) printf("데이터가 없습니다.\n");
else saveData(elist,curcount);
}
else if (menu == 6){
// 특정 날짜를 보고싶은지, 아니면 날짜 상관없이 통계를 보고싶은지 관리자에게 물음.
// askDate()가 0이라면 날짜 상관없는 전체 통계를 보고싶다는 의미.
if(askDate() == 0){
if (count==0) printf("데이터가 없습니다.\n");
else showInTime(elist,curcount);
}
// askDate()가 1이라면 특정 날짜 안에서만 통계를 보고싶다는 의미.
else{
if (count==0) printf("데이터가 없습니다.\n");
else showInTime_date(elist,curcount);
}
}
else if (menu == 7){
// 특정 날짜를 보고싶은지, 아니면 날짜 상관없이 통계를 보고싶은지 관리자에게 물음.
// askDate()가 0이라면 날짜 상관없는 전체 통계를 보고싶다는 의미.
if(askDate() == 0){
if (count==0) printf("데이터가 없습니다.\n");
else showOutTime(elist,curcount);
}
// askDate()가 1이라면 특정 날짜 안에서만 통계를 보고싶다는 의미.
else{
if (count==0) printf("데이터가 없습니다.\n");
else showOutTime_date(elist,curcount);
}
}
else if (menu == 8){
if (count==0) printf("데이터가 없어 검색할 수 없습니다.\n");
else searchTime(elist,curcount);
}
else if (menu == 9){
if (count==0) printf("데이터가 없어 검색할 수 없습니다.\n");
else calculateDailyWage(elist,curcount);
}
}
printf("\n종료됨!\n");
return 0;
}