解题思路:两个数组,一个存储,一个变化
注意事项:
参考代码:
#include <iostream>
#include <algorithm>
using namespace std;
int main() {
int a[100], b[100];
for (int i = 0; i < 10; i++) {
cin >> a[i];
}
int cnt =0 ;
for(int i =0;i<10;i++){
if(a[i]%2==1){
b[cnt] = a[i];
cnt++;
}
}
sort(b, b+cnt, greater<int>());
int temp = cnt;
for(int i = 0;i< 10;i++){
if(a[i] %2==0){
b[cnt] = a[i];
cnt++;
}
}
sort(b + temp , b+10);
for (int i = 0; i < 10; i++) {
cout << b[i] << " ";
}
cout << endl;
return 0;
}
0.0分
2 人评分
C语言考试练习题_排列 (C++代码)浏览:713 |
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:729 |
简单的a+b (C语言代码)浏览:594 |
C语言程序设计教程(第三版)课后习题10.1 (Java代码)浏览:1495 |
C语言程序设计教程(第三版)课后习题8.2 (C语言代码)浏览:5275 |
文科生的悲哀 (C语言代码)浏览:1539 |
Hello, world! (C语言代码)浏览:766 |
核桃的数量 (C语言代码)浏览:893 |
剪刀石头布 (C++代码)浏览:1811 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:545 |