鱼C论坛

 找回密码
 立即注册
查看: 2055|回复: 6

[已解决]C程序报错

[复制链接]
发表于 2020-5-19 03:06:27 | 显示全部楼层 |阅读模式

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

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

x
小弟刚学习C,刚刚练习了课件上的程序
#include <stdio.h>

void main()
{
        int i, sum=0;
            i=1;
    loop: for(i<=100)
           {
                   sum=sum+i;
                   i++;
                   goto loop;
           }
           printf("%d\n", sum);
}

为什么编译的时候总是报错呢?如下
D:\Visual C++ 6.0\Microsoft Visual Studio\MyProjects\goto\goto.c(7) : error C2143: syntax error : missing ';' before ')'
D:\Visual C++ 6.0\Microsoft Visual Studio\MyProjects\goto\goto.c(7) : error C2143: syntax error : missing ';' before ')'
D:\Visual C++ 6.0\Microsoft Visual Studio\MyProjects\goto\goto.c(7) : warning C4552: '<=' : operator has no effect; expected operator with side-effect
执行 cl.exe 时出错.

谢谢大佬
最佳答案
2020-5-19 18:41:41
#include <stdio.h>

void main()
{
        int i, sum=0;
            i=1;
    loop: if(i<=100)
           {
                   sum=sum+i;
                   i++;
                   goto loop;
           }
           printf("%d\n", sum);
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2020-5-19 03:09:17 | 显示全部楼层
呃呃呃,好像找到错误了,if打成了for...
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-5-19 18:41:41 | 显示全部楼层    本楼为最佳答案   
#include <stdio.h>

void main()
{
        int i, sum=0;
            i=1;
    loop: if(i<=100)
           {
                   sum=sum+i;
                   i++;
                   goto loop;
           }
           printf("%d\n", sum);
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-5-26 16:29:53 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 1 反对 0

使用道具 举报

发表于 2020-5-26 17:52:19 | 显示全部楼层

没关系啦,反正也是没事干时随便康康
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-5-26 17:55:21 | 显示全部楼层
不小心点了个支持
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-5-27 05:20:43 | 显示全部楼层
aaron.yang 发表于 2020-5-26 17:55
不小心点了个支持

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-11 16:54

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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