2 solutions

  • 0
    @ 2026-1-7 17:15:42

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

    • 0
      @ 2025-2-9 12:42:54

      小小判断

      #include <iostream>
      using namespace std;
      int main(){
          int n;
          cin>>n;
          if(n==1||n==3||n==5){
              cout<<"NO";
          }else{
              cout<<"YES";
          }
          return 0;
      }
      
      • 1

      Information

      ID
      754
      Time
      1000ms
      Memory
      256MiB
      Difficulty
      8
      Tags
      (None)
      # Submissions
      12
      Accepted
      11
      Uploaded By