春秋八甲 发表于 2020-5-9 10:39:47

比较大小的同一个程序为什么我就不行,求各位大佬

本帖最后由 春秋八甲 于 2020-5-9 10:43 编辑

初学者,在看小甲鱼老师视频的时候有一个比较三个数大小的程序,但是我按照小甲鱼的视频原封不动地敲出来后发现。。它运行无结果。。到底是为什么呜呜呜,求各位大佬告知

#include<stdio.h>

int main()
{
        int a,b,c,temp;
        printf("Please input three numbers:\n");
        scanf("%d %d %d",a,b,c);
        if( a > b )
        {
                temp = a;
                a = b;
                b = temp;
        }
        if( a > c )
        {
                temp = a;
                a = c;
                c = temp;
        }
        if( b > c )
        {
                temp = b;
                b = c;
                c = temp;
        }
        printf("%d %d %d\n",a,b,c);
        return 0;
}

liuzhengyuan 发表于 2020-5-9 10:41:05

请发一下你的代码……

qiuyouzhi 发表于 2020-5-9 10:42:15

发代码

春秋八甲 发表于 2020-5-9 10:42:26

liuzhengyuan 发表于 2020-5-9 10:41
请发一下你的代码……

。。。感谢大佬回复,我放弃了。。我连图片都上传不了。只能选择相册。。。

wuqramy 发表于 2020-5-9 10:43:18

春秋八甲 发表于 2020-5-9 10:42
。。。感谢大佬回复,我放弃了。。我连图片都上传不了。只能选择相册。。。

直接复制粘贴代码

liuzhengyuan 发表于 2020-5-9 10:43:39

春秋八甲 发表于 2020-5-9 10:42
。。。感谢大佬回复,我放弃了。。我连图片都上传不了。只能选择相册。。。

不要发图片,把你的代码文字复制粘贴到论坛!

春秋八甲 发表于 2020-5-9 10:44:43

#include<stdio.h>

int main()
{
        int a,b,c,temp;
        printf("Please input three numbers:\n");
        scanf("%d %d %d",a,b,c);
        if( a > b )
        {
                temp = a;
                a = b;
                b = temp;
        }
        if( a > c )
        {
                temp = a;
                a = c;
                c = temp;
        }
        if( b > c )
        {
                temp = b;
                b = c;
                c = temp;
        }
        printf("%d %d %d\n",a,b,c);
        return 0;
}

qiuyouzhi 发表于 2020-5-9 10:45:08

学编程最重要的是细心,第7行,scanf那里,&呢?
#include<stdio.h>

int main()
{
      int a,b,c,temp;
      printf("Please input three numbers:\n");
      scanf("%d %d %d",&a,&b,&c);
      if( a > b )
      {
                temp = a;
                a = b;
                b = temp;
      }
      if( a > c )
      {
                temp = a;
                a = c;
                c = temp;
      }
      if( b > c )
      {
                temp = b;
                b = c;
                c = temp;
      }
      printf("%d %d %d\n",a,b,c);
      return 0;
}

liuzhengyuan 发表于 2020-5-9 10:46:06

春秋八甲 发表于 2020-5-9 10:44
#include

int main()


scanf 少了一个 &
scanf("%d%d%d",&a,&b,&c);

春秋八甲 发表于 2020-5-9 10:46:27

qiuyouzhi 发表于 2020-5-9 10:45
学编程最重要的是细心,第7行,scanf那里,&呢?

丢。。总忘记这个。。非常感谢!

qiuyouzhi 发表于 2020-5-9 10:46:28

liuzhengyuan 发表于 2020-5-9 10:46
scanf 少了一个 &

这是少了一个?
少了三个吧

qiuyouzhi 发表于 2020-5-9 10:47:59

春秋八甲 发表于 2020-5-9 10:46
丢。。总忘记这个。。非常感谢!

多敲代码,多练习就好了。

春秋八甲 发表于 2020-5-9 10:48:11

liuzhengyuan 发表于 2020-5-9 10:46
scanf 少了一个 &

嗯嗯!谢谢
页: [1]
查看完整版本: 比较大小的同一个程序为什么我就不行,求各位大佬