2 条题解

  • 1
    @ 2024-6-29 21:15:46

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

    return 0;
    

    }

    • 0
      @ 2024-8-9 20:46:11
      #include<bits/stdc++.h>
      using namespace std;
      int main()
      {   
        int n;
        cin>>n;
        if(n%2==0){
        	cout<<"y e s";
        	
        }
        else{
        	cout<<"n o";
        }
        
      
          return 0;
      }
      
      • 1

      信息

      ID
      221
      时间
      1000ms
      内存
      16MiB
      难度
      2
      标签
      递交数
      57
      已通过
      30
      上传者