2 条题解

  • 1
    @ 2022-8-15 19:48:10
    using namespace std;
    int main()
    {
      int a;
      cin>>a;
      if(a%2==1){
      	cout<<"odd"<<endl;
      }else if(a%2==0){
      	cout<<"even"<<endl;
      }
      return 0;
    }
    
    
    • 1
      @ 2022-5-28 16:15:12
      using namespace std;
      int main()
      {
        int a,b,c;
        cin>>a;
        if(a%2==0){
        	cout<<"even"<<endl;
        }else{
        	cout<<"odd"<<endl;
        }
        return 0;
      }
      
      • 1

      信息

      ID
      27
      时间
      1000ms
      内存
      256MiB
      难度
      1
      标签
      递交数
      88
      已通过
      67
      上传者