记录编号 279113 评测结果 AAAAAAAAAA
题目名称 [USACO Oct09] 单数? 双数? 最终得分 100
用户昵称 GravatarHzoi_ 是否通过 通过
代码语言 C++ 运行时间 0.000 s
提交时间 2016-07-08 20:01:32 内存使用 0.00 MiB
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
using namespace std;
int n;
char c='\n',cc;
inline int MAIN(){
#define MINE
#ifdef MINE
	freopen("evenodd.in","r",stdin);
	freopen("evenodd.out","w",stdout);
#endif
	scanf("%d",&n);
	while(n--){
		while(c=='\n')c=getchar();
		while(c!='\n'){
			cc=c;
			c=getchar();
		}
		printf(cc&1?"odd\n":"even\n");
	}
	return 0;
}
int hzoier=MAIN();
int main(){;}