文章
17
粉丝
133
获赞
4
访问
93.2k
#include<bits/stdc++.h>
using namespace std;
bool cmp(int a, int b){
if(a % 2 == 1 && b % 2 == 0){
return true;
}
else if(a % 2 == 0 && b % 2 == 1){
return false;
}
else{
return a < b;
}
}
int main(){
int n;
cin >> n;
vector<int> a;
while(n>0){
int tem;
cin >> tem;
a.push_back(tem);
n--;
}
sort(a.begin(),a.end(),cmp);
for(int i = 0; i < a.size(); i++ ){
cout<<...
登录后发布评论
暂无评论,来抢沙发