#include<stdio.h>
void printMenu();
void Rent();
void Return();
int main(void)
{
int selectedMenu;
printMenu();
scanf("%d", &selectedMenu);
if( selectedMenu == 1)
{
// Rent
Rent();
}
else if( selectedMenu == 2 )
{
// Return
Return();
}
return 0;
}
void printMenu()
{
printf("==============\n");
printf("=1. 대 여=\n");
printf("==============\n");
printf("=2. 반 납=\n");
printf("==============\n");
}
void Rent()
{
FILE* stream;
char inputString[30];
stream = fopen("VideoList.txt","r");
printf("==============\n");
printf("= 대 여=\n");
printf("==============\n");
// 대여 가능 비디오 목록
// Input
while(!feof(stream))
{
fgets(inputString, 30, stream);
puts(inputString);
}
fclose(stream);
fflush(stdin);
gets(inputString);
stream = fopen("RentVideoList.txt","a");
fputs(inputString, stream);
fclose(stream);
// Add RentVideoList.txt
}
void Return()
{
printf("==============\n");
printf("= 반 납=\n");
printf("==============\n");
// 반납 가능 비디오 목록
// Input
// Remove RentVideoList.txt
}
'Programming > C,CPP,CS' 카테고리의 다른 글
CPP 연산자 오버로딩 (0) | 2014.01.16 |
---|---|
CPP 연산자 오버로딩 (0) | 2014.01.16 |
비디오 대여점 C 소스코드 예제 (0) | 2014.01.10 |
[업체고발] 부산 부곡동 XX터수리119 #2 (0) | 2014.01.05 |
[업체고발] 부산 부곡동 XX터수리119 #1 (0) | 2014.01.05 |