比较三个数,输出三个数的大小排序?

源码客栈网 论文问答 1

如何比较三个数,并进行大小排序?

回复

共2条回复 我来回复
  • 代码港湾
    这个人很懒,什么都没有留下~
    评论
    #include<stdio.h>
    int main() {
        void swop(int &x, int &y);
        int a, b, c;
        scanf("%d %d %d", &a, &b, &c);
        swop(a, b);
        swop(a, c);
        swop(b, c);
        printf("\n");
        printf("%d %d %d", a, b, c);
        return 0;
    }
    void swop(int &x, int &y) {
        int t;
        if(x > y) {
            t = x;
            x = y;
            y = t;
        }
    }
    

    这个可以出来结果吗??。。。

    0条评论
  • 源码货栈
    这个人很懒,什么都没有留下~
    评论
    #include<stdio.h>
    int main() {
        void swop(int &x, int &y);
        int a, b, c;
        scanf("%d %d %d", &a, &b, &c);
        swop(a, b);
        swop(a, c);
        swop(b, c);
        printf("\n");
        printf("%d %d %d", a, b, c);
        return 0;
    }
    void swop(int &x, int &y) {
        int t;
        if(x > y) {
            t = x;
            x = y;
            y = t;
        }
    }
    
    0条评论

发表回复

登录后才能评论