Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
18268 student1 [USACO09OCT]Even? Odd? G C++ 编译错误 0 0 MS 0 KB 323 2021-10-15 20:05:42

Tests(0/0):


#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]; cout<<endl; } for(int j=1;j<=n;i++) { if(a[j]%2!=0) { cout<<"even"<<endl; } else { cout<<"odd"<<endl; } } return 0; }


测评信息: