Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
2543 | 梅煦洋 | 乐乐的得分 | C++ | 解答错误 | 0 | 0 MS | 364 KB | 407 | 2019-11-29 21:05:44 |
#include<iostream> using namespace std; int main(){ int qween; int p=0,er=0; cin>>qween; int I[9999]={0},x[9999]={0},s[9999]={0}; for(int E=0;E<qween;E++){ cin>>I[E]; if(I[E]%2==0){ er++; x[er]=I[E]; }else{ p++; s[p]=I[E]; } } for(int E=1;E<=er;E++){ cout<<x[E]<<" "; } cout<<endl; for(int E=1;E<=p;E++){ cout<<s[E]<<" "; } cout<<endl; return 0; }