2 条题解

  • 0
    @ 2025-10-14 16:19:34

    Python:

    scores = list(map(int, input().split()))
    print(max(scores))
    
    • 0
      @ 2024-7-25 12:45:52

      参考答案:

      #include<iostream>
      
      using namespace std;
      
      int main() 
      {
          int a, b, c;
          cin >> a >> b >> c;
          int x = max(max(a, b), c);
          cout << x;
      
          return 0;
      }
      
      • 1

      信息

      ID
      36
      时间
      1000ms
      内存
      256MiB
      难度
      9
      标签
      递交数
      10
      已通过
      8
      上传者