#include <stdio.h>
int main(void) {
char choice;
while(1) {
printf("choice (1,2,3): ");
scanf("%c", &choice);
switch(choice) {
case '1':
printf("1..\n");
break;
case '2':
printf("2..\n");
break;
case '3':
printf("3..\n");
break;
//case 엔터값 들어오면 종료
case '\n':
printf("Enter..");
return 1;
default:
printf("다시 입력해주세요\n");
}
fflush(stdin);
}
return 0;
}
'c·c++ > c 프로그래밍' 카테고리의 다른 글
2차원 테이블 랜덤하게 섞기 (0) | 2012.03.30 |
---|---|
<태그>를 모두 삭제하는 프로그램 (0) | 2012.03.29 |
c언어를 명령프롬프트에 띄우는 방법 - Visual c++ 2010 (0) | 2012.03.29 |
입력을 받는 수의 숫자를 뒤집는 법 (0) | 2012.03.29 |
float 입출력에 관한 질문 (0) | 2012.03.29 |