小甲鱼视频上的一道题,但是看不懂
#include<stdio.h>void 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");
}
我运行的时候一直循环着把我打的竖向排列,怎么运行到The No is 和 The end那个地步啊? 把c用int转换一下 数据有没有错 13和27是控制字符键盘应该是不能输入的
页:
[1]