2 条题解

  • 0
    @ 2026-7-4 14:58:53

    #include <bits/stdc++.h> using namespace std;

    int main() { int a, b, c; cin >> a >> b >> c; if (a + b > c) { cout << "yes"; } else { cout << "no"; } return 0; }

    • 0
      @ 2026-6-4 22:38:57
      #include <bits/stdc++.h>
      using namespace std;
      int main() {
       int a,b,c;
          cin >> a >> b >> c;
          if(a + b > c)
              cout << "yes";
          else
              cout << "no";
          return 0;
      }
      
      
      
      • 1

      信息

      ID
      30041
      时间
      1000ms
      内存
      256MiB
      难度
      1
      标签
      递交数
      39
      已通过
      29
      上传者