Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
18269 student1 [USACO09OCT]Even? Odd? G C++ 解答错误 0 0 MS 692 KB 308 2021-10-15 20:07:43

Tests(0/30):


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


测评信息: