3 条题解

  • 3
    @ 2025-2-11 19:02:06
    #include<bits/stdc++.h>
    #define yy return 0;
    using namespace std;
    int main(){
        int n;cin>>n;     
        if(n%2) cout<<"odd";
        else cout<<"even";
        yy
    }
    • 1
      @ 2025-4-1 19:18:37

      小小的题目666

      #include<bits/stdc++.h>
      #define yy return 0;
      using namespace std;
      int main(){
          int n;cin>>n;     
          if(n%2) cout<<"odd";
          else cout<<"even";
          yy
      }
      
      • 1

        #include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; if(n%2==0) { cout<<"even"; } else { cout<<"odd"; } }

        • 1

        信息

        ID
        4487
        时间
        1000ms
        内存
        128MiB
        难度
        1
        标签
        (无)
        递交数
        254
        已通过
        150
        上传者