返回列表 發帖
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main(){
  4.      int n;
  5.      cin >> n;
  6.      if(n%2)
  7.         cout<<"odd\n";
  8.      else
  9.         cout<<"even\n";
  10.     return 0;
  11. }
複製代碼

TOP

返回列表