鱼C论坛

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

这段代码有什么错,检查几边,没找到原因

[复制链接]
发表于 2014-10-2 14:09:07 | 显示全部楼层 |阅读模式

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

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

x
编译时出现一个错误

# include <stdio.h>

int main(void)
{
        int a,b,c;
        int t;

        printf("请输入三个整数(中间以空格分隔):");
        scanf("%d %d %d", &a, &b, &c);

        if (a<b)
        {
                t=a;
                a=b;
                b=t;
        }

        if (a<c)
        {
                t=a;
                a=c;
                c=t;
        }

        if (b<c)
        {
                t=b;
                b=c;
                c=t;
        }
        printf("%d %d %d\n",a,b,c);

        return 0;
}



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

使用道具 举报

发表于 2014-10-2 15:23:56 | 显示全部楼层
这样写再试试!scanf("%d%d%d",&a,&b,&c);
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2014-10-2 18:54:35 | 显示全部楼层
mingw32-gcc.exe   -c "C:\Documents and Settings\Administrator\桌面\c语言\1.c" -o "C:\Documents and Settings\Administrator\桌面\c语言\1.o"
mingw32-g++.exe  -o "C:\Documents and Settings\Administrator\桌面\c语言\1.exe" "C:\Documents and Settings\Administrator\桌面\c语言\1.o"   
Process terminated with status 0 (0 minute(s), 0 second(s))
0 error(s), 0 warning(s) (0 minute(s), 0 second(s))

用codeblocks自带gcc编译器编译无错
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

头像被屏蔽
发表于 2014-11-1 07:07:13 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-25 05:18

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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