3 条题解

  • 1
    @ 2023-1-15 11:12:10
    #include <iostream>//hetao3097453
    using namespace std;
    int main()
    {
        int n;
        cin >> n;
        if(n > 1 && n < 100)
        {
            cout << "yes";
        }
        return 0;
    }
    
    
    • 0
      @ 2023-9-6 20:07:57
      #include<bits/stdc++.h>
      using namespace std;
      int main()
      {
          int a;
          cin >> a;
          if (a > 1 && a < 100)
          {
              cout << "yes";
          }
          return 0;
      }
      

      A

      • 0
        @ 2023-4-6 19:48:53
        #include<bits/stdc++.h>
        using namespace std;
        int main()
        {
            int x;
            cin>>x;
            if (x>1&&x<100)
                cout<<"yes";
            return 0;
        }
        • 1

        信息

        ID
        638
        时间
        1000ms
        内存
        16MiB
        难度
        1
        标签
        递交数
        115
        已通过
        89
        上传者