hanyf 发表于 2024-1-5 21:47:22

输出三个数中的最大的

#include <stdio.h>
int main()
{
        int a, b, c, max;
        scanf_s("%d %d %d",&a,&b,&c);
        max = a;
        if (max < b)
             max = b;
        if (max< c);
             max = c;
                printf("最大数为%d", max);
                        return 0 ;
}
输出三个数中最大的数,不知道是哪出了问题,程序可以运行,但是输出的不是最大的那一个
拜托拜托

FishC 发表于 2024-1-5 21:47:50

你的代码中有一个小错误,第8行的分号应该去掉。代码应该修改为:

#include
int main()
{
    int a, b, c, max;
    scanf_s("%d %d %d",&a,&b,&c);
    max = a;
    if (max < b)
      max = b;
    if (max < c)
      max = c;
    printf("最大数为%d", max);
    return 0 ;
}

原因是你在第10行的if语句后面多加了一个分号,使得第11行的printf语句无论如何都会执行,导致输出的是最后一个输入的数。修正后的代码会正确地输出三个数中的最大值。

以上回复来自 FishC AI 小助理,如未能正确解答您的问题,请继续追问。

liyifeng295641 发表于 2024-1-5 21:57:26


#include <stdio.h>
int main()
{
      int a, b, c, max;
      scanf_s("%d %d %d",&a,&b,&c);
      max = a;
      if (max < b)
             max = b;
      if (max< c);
             max = c;
                printf("最大数为%d", max);
                        return 0 ;
}
运行你的代码,有几个错误。
test.c:6:9: error: call to undeclared function 'scanf_s'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
      scanf_s("%d %d %d",&a,&b,&c);
      ^
test.c:6:9: note: did you mean 'scanf'?
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/stdio.h:174:6: note: 'scanf' declared here
int      scanf(const char * __restrict, ...) __scanflike(1, 2);
         ^
test.c:10:20: warning: if statement has empty body [-Wempty-body]
      if (max< c);
                   ^
test.c:10:20: note: put the semicolon on a separate line to silence this warning
1 warning and 1 error generated.

改进代码!

#include <stdio.h>
int main()
{
    int a, b, c, max;
        scanf("%d %d %d",&a,&b,&c);
      max = a;
    if (max < b)
      max = b;
    if (max< c)
         max = c;
      printf("最大数为%d", max);
       return 0 ;
}

编译结果:
➜Desktop vim test.c
➜Desktop gcc test.c
➜Desktop ./a.out
1 2 3
最大数为3%

hanyf 发表于 2024-1-5 22:11:55

FishC 发表于 2024-1-5 21:47
你的代码中有一个小错误,第8行的分号应该去掉。代码应该修改为:

#include


printf本来就是一定要执行的啊

FishC 发表于 2024-1-5 22:12:06

hanyf 发表于 2024-01-05 22:11
printf本来就是一定要执行的啊

非常抱歉,我犯了一个错误。你是对的,printf语句本身是一定会执行的。

那么问题出在第10行的if条件判断上,你多加了一个分号。这个分号使得if语句后面的代码块无论条件是否成立都会执行,导致max的值被最后输入的数覆盖了,所以输出的结果不正确。

正确的代码应该是:

#include <stdio.h>
int main() {
    int a, b, c, max;
    scanf_s("%d %d %d", &a, &b, &c);
    max = a;
    if (max < b)
      max = b;
    if (max < c)
      max = c;
    printf("最大数为%d", max);
    return 0;
}

现在,运行该代码,您将会正确地得到输入的三个数中的最大值。再次对我之前的回答的错误表示歉意,谢谢您的指正!

以上回复来自 FishC AI 小助理,如未能正确解答您的问题,请继续追问。

jackz007 发表于 2024-1-5 22:12:23

#include <stdio.h>

int main(void)
{
      int a, b, c, max                                    ;
      scanf_s("%d%d%d", &a , &b , &c)                     ;
      max = (a > b && a > c) ? a : (b > a && b > c) ? b : c ; // 求取最大值、最小值用三目运算最简便
      printf("最大数为%d\n" ,max)                         ;
      return 0                                              ;
}
页: [1]
查看完整版本: 输出三个数中的最大的