1 条题解

  • 1
    @ 2021-11-13 21:23:18
    #include <cstdio>
    #include <algorithm>
    
    using namespace std;
    
    int main()
    {
        int a, b, c; scanf("%d%d%d", &a, &b, &c);
        printf("%d", max({a, b, c}));
        return 0;
    }
    
  • 1

信息

难度
2
分类
(无)
标签
递交数
43
已通过
29
通过率
67%
上传者