1 条题解

  • 1
    @ 2026-7-13 11:43:19

    这道题用函数就行了 #include <bits/stdc++.h> using namespace std;

    int main() { int maxx, a, b, c; cin >> a >> b >> c; maxx = max(a, max(b, c)); cout << maxx;

    return 0;
    

    }

    • 1

    信息

    ID
    30044
    时间
    1000ms
    内存
    256MiB
    难度
    4
    标签
    递交数
    75
    已通过
    37
    上传者