提交时间:2023-12-31 10:54:10

运行 ID: 33720

#include<iostream> using namespace std; int main(){ int n; cin>>n; while(n--){ int x; cin>>x; if(x%2==0)cout<<"even\n"; else cout<<"odd\n"; } return 0; }