Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
14713 | ZhengYiwei | [USACO09OCT]Even? Odd? G | C++ | 解答错误 | 93 | 1 MS | 704 KB | 210 | 2021-07-21 13:39:12 |
#include <iostream> using namespace std; int main(){ long long int n,b; cin>>n; for(long long int i=0;i<n;i++){ cin>>b; if(b%2==0) cout<<"even"<<endl; else cout<<"odd"<<endl; } return 0; }