美文网首页
三个数排序

三个数排序

作者: 能干的蓝胖子 | 来源:发表于2020-01-31 07:47 被阅读0次
    #include <stdio.h>
    int main(void)
    {
        int a, b, c;
        int t;
        
        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;
    }
    
    

    相关文章

      网友评论

          本文标题:三个数排序

          本文链接:https://www.haomeiwen.com/subject/ylzwthtx.html