请教各位大神怎么跳出循环?
#include <stdio.h>int main()
{
int i=0;
char c;
while(1)
{
c='\0';
while(c!=13&&c!=27)
{
c=getchar();
printf("%c\n", c);
}
if(c==27)
break;
i++;
printf("The No. is %d\n", i);
}
printf("The end");
return 0;
}
本意是想着按了esc键后输出The end,然而按了之后没得反应,请教各位大神帮忙看看问题在哪里,谢谢
[此贴子已经被作者于2018-6-15 10:03编辑过]