怎么在c语言中设置一个语句,使输入y/Y后继续,n/N后结束程序
4个回答
展开全部
//2016.06.24 自用 by Wang Z.P.
//Start of the Y/N
//可用作任何文件,任何平台,不需要额外的库文件,所需变量为 char exitInput; char BUF; 可以排除非法输入,诸如非法长度,输入回车等。读取用的是getchar(),的确麻烦很多,但是操作起来要比scanf思路清晰一点。
char exitInput;
char BUF;
//变量申明尽量放在函数开头
while(1){
while((BUF = getchar()) != '\n'){
while((BUF = getchar()) != '\n' && BUF != EOF);
printf("\npress Y to Continue, N to Exit: ");//非法长度
exitInput = getchar();
//添加这段的理由在于,检测到输入回车时,直接提示"press..."
while(exitInput == '\n'){
printf("\npress Y to Continue, N to Exit: ");//输入回车
exitInput = getchar();
}
//printf("2.【%c】\n",exitInput);//调试
}
//如果不是YyNn就循环
if(exitInput != 'N' && exitInput != 'n' && exitInput != 'Y' && exitInput != 'y'){
printf("\npress Y to Continue, N to Exit: ");//非法字符
exitInput = getchar();
//添加这段的理由在于,检测到输入回车时,直接提示"press..."
while(exitInput == '\n'){
printf("\npress Y to Continue, N to Exit: ");//输入回车
exitInput = getchar();
}
//printf("4.【%c】\n",exitInput);//调试
} else {
break;
}
//printf("5.【%c】\n",exitInput);//调试
}
if (exitInput == 'N' || exitInput == 'n'){
break;
}
// End of the Y/N
2013-10-29
展开全部
printf("Continue or not?(Y/N)")j=getchar();if(j=='Y'||j=='y') goto TAB; else exit(0); -------------------你要求的如果是控制台程序、那么就要用到goto!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-10-29
展开全部
char ch[100];printf("Continue or not?(Y/N)");gets(ch);if (*ch == 'N') exit(0); //go on......
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
写
while
循环,读输入字符,然后判断。伪码如下:
while
(true)
{
ch
=
输入的字符
如果
ch
是n/n:
break
do
your
things
}
while
循环,读输入字符,然后判断。伪码如下:
while
(true)
{
ch
=
输入的字符
如果
ch
是n/n:
break
do
your
things
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |