鱼C论坛

 找回密码
 立即注册
查看: 1024|回复: 3

[已解决]C语言出错看不出是哪,能不能帮个忙

[复制链接]
发表于 2021-2-4 22:46:12 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
#include <stdio.h>
#include <conio.h>
int main(void)
{
    int i=0;
    char c;
    while (1)
    {
        c='\0';
        while (c!=13&&c!=27)
        {
            c=getch();
            printf("%c\n",c);
        }
        if(c==27)
          break;
        i++;
          printf("The No.is %d\n",i);
    }
    printf("The end");
}
//编译器没有显示错误的地方
最佳答案
2021-2-4 23:02:00
我用 VS2015 运行这个程序,没有大的问题,两个小问题在注释
#include <stdio.h>
#include <conio.h>
int main(void)
{
        int i = 0;
        char c;
        while (1)
        {
                c = '\0';                   // 结束符是不能通过键盘输入的,所以此语句可以去掉
                while (c != 13 && c != 27)  // '13'也是不能通过键盘输入的
                {
                        c = getch();
                        printf("%c\n", c);
                }
                if (c == 27)
                        break;
                i++;
                printf("The No.is %d\n", i);
        }
        printf("The end");
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-2-4 23:02:00 | 显示全部楼层    本楼为最佳答案   
我用 VS2015 运行这个程序,没有大的问题,两个小问题在注释
#include <stdio.h>
#include <conio.h>
int main(void)
{
        int i = 0;
        char c;
        while (1)
        {
                c = '\0';                   // 结束符是不能通过键盘输入的,所以此语句可以去掉
                while (c != 13 && c != 27)  // '13'也是不能通过键盘输入的
                {
                        c = getch();
                        printf("%c\n", c);
                }
                if (c == 27)
                        break;
                i++;
                printf("The No.is %d\n", i);
        }
        printf("The end");
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-2-4 23:34:42 | 显示全部楼层
本帖最后由 jackz007 于 2021-2-4 23:45 编辑
#include <stdio.h>
#include <conio.h>

int main(void)
{
        char c                                                              ;
        int i                                                               ;
        for(;;) {
                for(i = 0 ; (c = getch()) != 13 && c != 27 ; i ++) putch(c) ;
                if(c == 27) break                                           ;
                else printf("\nThe No.is %d\n\n" , i)                       ;
        }
        printf("\nThe end\n")                                               ;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-2-5 10:37:57 | 显示全部楼层
当C=27时,直接结束,当c=13时,i++,从0变成1,然后打印the No. is。。。然后继续开始c变成0,继续等待输入。

不过,等待输入应当用getchar()。getch()好像用来阻塞键盘,不知道能不能被赋予。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-14 19:05

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表