标签:stream 0ms namespace space 奇数 color 奇偶排序 clu 序列
给定10个整数的序列,要求对其重新排序。排序要求:
1.奇数在前,偶数在后;
2.奇数按从大到小排序;
3.偶数按从小到大排序。
4 7 3 13 11 12 0 47 34 98
47 13 11 7 3 0 4 12 34 98
1 #include <iostream> 2 #include <algorithm> 3 using namespace std; 4 int main() 5 { 6 int a[10],b[10],c[10],m=0,n=0; 7 for (int i=0;i<10;++i) 8 { 9 cin >> a[i]; 10 if (a[i]%2==1) 11 { 12 b[m++] =a[i]; 13 } 14 else 15 { 16 c[n++] = a[i]; 17 } 18 } 19 sort(b, b + m, greater<int>()); 20 sort(c, c + n); 21 for (int i=0;i<m;++i) 22 { 23 cout << b[i] << " "; 24 } 25 for (int i = 0; i < n; ++i) 26 { 27 cout << c[i] << " "; 28 } 29 return 0; 30 }
标签:stream 0ms namespace space 奇数 color 奇偶排序 clu 序列
原文地址:https://www.cnblogs.com/dss-99/p/14088347.html