Problem C: 零起点学算法18——3个数比较大小

2021-05-18 18:28

阅读:535

标签:code   color   include   算法   ble   int   problem   col   print   

#includeint main()
{
    int a,b,c;
    while(scanf("%d %d %d",&a,&b,&c)!=EOF)
    if(ab){
        int flag=a;
         a=b;
        b=flag;    
    }
    if(ac){
        int flag=a;
        a=c;
        c=flag;
    }
    if(bc){
        int flag=b;
        b=c;
        c=flag;
    }
    printf("%d %d %d",a,b,c);
    return 0;
} 

 

Problem C: 零起点学算法18——3个数比较大小

标签:code   color   include   算法   ble   int   problem   col   print   

原文地址:https://www.cnblogs.com/chenlong991223/p/9744469.html


评论


亲,登录后才可以留言!