马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
很简单的程序,根据用户输入的首字母打印相对应的字符串,如果在终端输入文件结束符ctrl+D,程序就会无限循环,如果把程序中注释掉的三行取消注释,当输入文件结束符的时候就会正常退出,文件结束符这种东西也会重新放回队列么?
char get_choice(void);
int main(void) {
char choice;
while ((choice = get_choice()) != 'q') {
switch (choice) {
case 'a':
printf("%s\n", "advice");
break;
case 'b':
printf("%s\n", "bell");
break;
case 'c':
printf("%s\n", "count");
break;
default:
// if (EOF == choice) {
// return 0;
// }
printf("Invalid input\n");
break;
}
}
return 0;
}
char get_choice(void) {
char c;
int item;
printf("Enter the letter of your choice:\n");
printf("%-15s%-15s\n%-15s%-15s\n>", "a. advice", "b. bell", "c. count", "q. quit");
if ((c = getchar()) != EOF) {
while ((getchar()) != '\n') {
continue;
}
return c;
} else {
return EOF;
}
}
|