Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
14716 | ZhengYiwei | [USACO09OCT]Even? Odd? G | C++ | 通过 | 100 | 1 MS | 736 KB | 260 | 2021-07-21 14:06:39 |
#include <iostream> using namespace std; int main(){ int n; string st[1000]; cin>>n; for(int i=0;i<n;i++){ string s; cin>>s; if(s[s.size()-1]%2==0)st[i]="even"; else st[i]="odd"; } for(int i=0;i<n;i++)cout<<st[i]<<endl; return 0; }