提交时间:2021-07-10 18:44:07

运行 ID: 14137

#include <iostream> using namespace std; int main () { int n, j; cin >> n; for (int i=1; i<=n; i++) { cin >> j; if (j%2==0) { cout << "even" << endl; } else { cout << "odd" <<endl; } } return 0; }