五个数从小到大排列

时间:2020-12-04 19:31:24

五个数从小到大排列

#include <stdio.h>
void main()
{
    int a=4,b=5,c=2,d=8,e=1,temp;
    if(a>b){
        temp=a;
        a=b;
        b=temp;
    }
    if(a>c){
        temp=a;
        a=c;
        c=temp;
    }
    if(a>d){
        temp=a;
        a=d;
        d=temp;
    }
    if(a>e){
        temp=a;
        a=e;
        e=temp;
    }
    if(b>c){
        temp=b;
        b=c;
        c=temp;
    }
    if(b>d){
        temp=b;
        b=d;
        d=temp;
    }
    if(b>e){
        temp=b;
        b=e;
        e=temp;
    }
    if(c>d){
        temp=c;
        c=b;
        b=temp;
    }
    if(c>e){
        temp=c;
        c=e;
        e=temp;
    }
    if(d>e){
        temp=d;
        d=e;
        e=temp;
    }
    printf("%d%4d%4d%4d%4d\n",a,b,c,d,e);
}