提交时间:2019-11-25 20:09:40

运行 ID: 2449

#include<iostream> using namespace std; int main() { int n,i,j=0,k=0, a[100], b[100];//a[100]用来存放奇数,b[100]用来存放偶数 cin>>n; while(n>0){ cin>>i; if(i%2==0){ b[j]=i; j++; } else { a[k]=i; k++; } n--; } if(j==0) cout<<"偶数: 0个 "; else { for(int h=0;h<j;h++) cout<<b[h]<<" "; cout<<endl; } if(k==0) cout<<"奇数: 0个 "; else { for(int h=0;h<k;h++) cout<<a[h]<<" "; cout<<endl; } }