#include<stdio.h>
#include<iostream>
using namespace std;
int main()
{
    int i;
    cin >> i;
    if (i % 2 == 0){
        cout << "偶数" << endl;
    }
    else{
        cout << "奇数" << endl;
    }
    system("pause");
    return 0;
}

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-08
  • 2022-12-23
  • 2021-11-08
猜你喜欢
  • 2021-11-08
  • 2021-12-10
  • 2021-11-08
  • 2021-11-08
  • 2021-11-08
  • 2021-07-27
相关资源
相似解决方案