泽拉坦22 发表于 2018-4-6 16:55:47

小甲鱼视频上的一道题,但是看不懂

#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那个地步啊?

BngThea 发表于 2018-4-6 17:14:49

把c用int转换一下

hiruya 发表于 2018-4-6 19:35:46

数据有没有错 13和27是控制字符键盘应该是不能输入的
页: [1]
查看完整版本: 小甲鱼视频上的一道题,但是看不懂