关于按"x"键跳出循环的一个问题,求高手给讲解一下
#include <stdio.h>void main()
{
char ch;
while(1)
{
printf("Enter x to exit,orther to continue.\n");
if((ch=getc(stdin))==120) //if((ch=getc(stdin))=="x")
break;
else
continue;
}
}
原书例子如注释中,编辑通不过,本人改为现在这样子之后可以运行,现仍有疑问如下:
为什么按"x"健还要按回车才会退出程序呢?