鱼C论坛

 找回密码
 立即注册
查看: 986|回复: 4

[已解决]关于三个数字从小到大排序的问题

[复制链接]
发表于 2020-11-15 17:12:42 | 显示全部楼层 |阅读模式

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

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

x
本帖最后由 jpan1221 于 2020-11-15 17:17 编辑

代码如下:

include <stdio.h>

int main() {
    int a, b, c;
    printf("input the first integer number: ");
    scanf("%d", &a);
    getchar();
    printf("input the second integer number: ");
    scanf("%d", &b);
    getchar();
    printf("input the third integer number: ");
    scanf("%d", &c);
    getchar();
    int temp[256] = {0}; int t = 0;
    temp[0] = a; temp[1] = b; temp[2] = c;
    for(int i = 0; i < 3; i++)
    {
        for(int j = i + 1; j < 3; j ++)
        {
            if(temp[i] < temp[j])
            {
                t = temp[i];
                temp[i] = temp[j];
                temp[j] = t;
            }
        }

    }

    printf("The biggest number is:%d\n",temp[0]);
    printf("The smallest number is:%d\n",temp[2]);
}

我没看出来哪里有问题
但是运行结果是这样的:
input the first integer number:10
input the second integer number:1000
input the third integer number:15
The biggest number is:1
000
The smallest number is:0

Process finished with exit code 0

求大佬帮忙看看问题所在
最佳答案
2020-11-15 17:57:35
1、三个数比较大小,用不着弄得这么复杂;2、输入的都是整数,用不着用 getchar(); 来吸收回车键;
include <stdio.h>

int main() {
     int a, b, c,t,max,min;
     printf("input the first integer number: ");
     scanf("%d", &a);
     printf("input the second integer number: ");
     scanf("%d", &b);
     printf("input the third integer number: ");
     scanf("%d", &c);
   
    max = a;
    min = a;
    if (max < b) 
    {         
         max = b;
    }
    else
    {
        min = b;
    }
    if (max < c) 
    {         
         max = c;
    }
    else
    {
        min = c;
    }

    printf("The biggest number is:%d\n",max);
    printf("The smallest number is:%d\n",min);
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-11-15 17:20:33 | 显示全部楼层

回帖奖励 +3 鱼币

    for(int i = 0; i < 3; i++)
    {
        for(int j = i + 1; j < 3; j ++)
        {
            if(temp[i] < temp[j])
            {
                t = temp[i];
                temp[i] = temp[j];
                temp[j] = t;
            }
        }

你的错误在这里,0和1比较、交换,1和2比较、交换,最后一次循环2和3比较、交换时,temp[3]是0
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 1 反对 0

使用道具 举报

发表于 2020-11-15 17:57:35 | 显示全部楼层    本楼为最佳答案   
1、三个数比较大小,用不着弄得这么复杂;2、输入的都是整数,用不着用 getchar(); 来吸收回车键;
include <stdio.h>

int main() {
     int a, b, c,t,max,min;
     printf("input the first integer number: ");
     scanf("%d", &a);
     printf("input the second integer number: ");
     scanf("%d", &b);
     printf("input the third integer number: ");
     scanf("%d", &c);
   
    max = a;
    min = a;
    if (max < b) 
    {         
         max = b;
    }
    else
    {
        min = b;
    }
    if (max < c) 
    {         
         max = c;
    }
    else
    {
        min = c;
    }

    printf("The biggest number is:%d\n",max);
    printf("The smallest number is:%d\n",min);
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-11-15 18:16:42 | 显示全部楼层
本帖最后由 jackz007 于 2020-11-15 18:26 编辑
        for(int i = 0 ; i < 3 ; i ++)
        修改成下面这样
        for(int i = 0 ; i < 2 ; i ++)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-11-15 20:40:40 | 显示全部楼层
风过无痕1989 发表于 2020-11-15 17:57
1、三个数比较大小,用不着弄得这么复杂;2、输入的都是整数,用不着用 getchar(); 来吸收回车键;

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

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-12 13:38

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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