1 条题解

  • 1
    @ 2024-11-21 20:35:33

    说田忌聪明,没有问题,因为他能篡姜氏的位代齐。

    说田忌傻,也没有问题,因为他上中下马都分不清。

    #include<bits/stdc++.h>
    using namespace std;
    
    double horse[3];
    int main(){
        for(int i=0;i<3;i++) cin>>horse[i];
        sort(horse,horse+3);
        for(int i=0;i<3;i++) cout<<horse[i]<<" ";
        return 0;
    }
    

    信息

    ID
    608
    时间
    1000ms
    内存
    256MiB
    难度
    6
    标签
    递交数
    42
    已通过
    14
    上传者