3 条题解

  • 4
    @ 2022-11-27 10:06:44
    #include <bits/stdc++.h>
    using namespace std;
    int main()
    {
        int x, y, z;
        cin >> x >> y >> z;
        if (x >= 90 || y >= 90 || z >= 90)
        {
            cout << "beijing";
        }
        else
        {
            cout << "nanjing";
        }
        return 0;
    }
    
    • 0
      @ 2023-9-24 9:12:15
      #include<bits/stdc++.h>
      using namespace std;
      int main()
      {
          int c , v , n;
          cin >> c >> v >> n;
          if(c >= 90||v >= 90 || n >= 90)
          {
              cout << "beijing";
          }
          else
          {
              cout << "nanjing";
          }
          return 0;
      }
      
      • 0
        @ 2023-4-4 17:45:18
        #include<bits/stdc++.h>
        using namespace std;
        int main()
        {
            int x,y,z;
            cin>>x>>y>>z;
            if (x>=90||y>=90||z>=90)
                cout<<"beijing";
            else
                cout<<"nanjing";
            return 0;
        }
        • 1

        【入门】暑期的旅游计划(2)

        信息

        ID
        624
        时间
        1000ms
        内存
        64MiB
        难度
        1
        标签
        递交数
        109
        已通过
        74
        上传者