47 条题解

  • -2
    @ 2023-10-28 21:24:12

    这个很简单的

    #include <bits/stdc++.h>
    using namespace std;
    int main()
    {
        int a;
        cin>>a;
        if (a==1 or a==3 or a==5)
        {
            cout<<"NO";
        }
        else
        {
            cout<<"YES";
        }
        return 0;
    }
    
    
    • -2
      @ 2023-8-23 14:52:28
      #include <iostream>
      using namespace std;
      int main()
      {
          int n;
          cin >> n;
          if (n!=1)
          {
              if (n!=3)
              {
                  if (n!=5)
                  {
                      cout << "YES";
                  }
                  else
                  {
                      cout << "NO";
                  }
              }
              else
              {
                  cout << "NO";
              }
          }
          else
          {
              cout << "NO";
          }
          return 0;
      }
      你学废了吗?(<o><o>)=O (#)0◁0)
      
      • -2
        @ 2023-8-19 18:48:31

        《简单》

        #include <bits/stdc++.h>//好习惯
        using namespace std;
        int main()
        {
            int n;
            cin >> n;
            if (n != 1 && n != 3 && n != 5) cout << "YES";
            else cout << "NO";
            return 0;//好习惯
        }
        

        已AC🚀️

        • -5
          @ 2022-7-31 14:47:26
          #include <iostream>
          using namespace std;
          int main() 
          {
          	int x;
              cin >> x;
              if (x==1)
              {
                  cout << "NO";
              }
              else if (x==3)
              {
                  cout << "NO"; 
              }
              else if (x==5)
              {
                  cout << "NO";
              }
              else
              {
                  cout <<"YES";
              }
          	return 0;
          }
          
        • -12

          简单

          • -14
            @ 2022-7-18 16:44:47

            自己做

            • -35
              @ 2022-2-18 22:10:59

              自己做

              信息

              ID
              1291
              时间
              1000ms
              内存
              256MiB
              难度
              3
              标签
              递交数
              3715
              已通过
              1871
              上传者