3 条题解

  • 0
    @ 2024-12-26 22:45:12

    #include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,max; cin>>a>>b>>c; if(a>b){ max=a; } else{ max=b; } if(c>max){ max=c; } cout<<max; return 0; }

    信息

    ID
    115
    时间
    1000ms
    内存
    256MiB
    难度
    1
    标签
    (无)
    递交数
    101
    已通过
    37
    上传者