-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.c
More file actions
64 lines (50 loc) · 979 Bytes
/
main.c
File metadata and controls
64 lines (50 loc) · 979 Bytes
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
#include "common.h"
#include "cusManager.h"
#include "dvdManager.h"
#include "screenOut.h"
enum{CUS_REGIST=1, CUS_SEARCH, DVD_ENROLL, DVD_SEARCH, DVD_RENT, DVD_RETURN, SHOW, QUIT};
void ClearLineFromReadBuffer(void)
{
while (getchar() != '\n');
}
int main(void)
{
int inputMenu = 0;
while(1)
{
ShowMenu();
scanf("%d", &inputMenu);
ClearLineFromReadBuffer();
switch (inputMenu)
{
case CUS_REGIST:
RegistCustomer();
break;
case CUS_SEARCH:
SearchCusInfo();
break;
case DVD_ENROLL:
EnrollDvd();
break;
case DVD_SEARCH:
SearchDvdInfo();
break;
case DVD_RENT:
RentDvd();
break;
case DVD_RETURN:
ReturnDvd();
break;
case SHOW:
ShowAllRentCus();
break;
}
if(inputMenu==QUIT)
{
puts("ÀÌ¿ëÇØ Áּż °í¸¶¿ö¿ä~");
break;
}
}
return 0;
}
/* end of file */