[求助]关于输入字符的switch()语句
要改一个小小程序,要达到:输入:y,输出:continue!!!;输入:n,退出;输入其它的字符:没有反应.
现下面的输入Y或N还行,但要输入其它的东东,要怎么做会让它没反应而不是进入死循环?等我再输入Y的时候它又可以输出continue!!!.
谢谢大家了.
#include<stdio.h>
main()
{
char ch;
printf("Input 'Y' to continue or input 'N' to exit!");
ch=getchar();
switch(ch)
{
case'y':printf("continue!!!");break;
case'n':exit(0);break;
default:while(1){}
}
}