编写一个c加加程序,输入三个数组按从小到到大顺序排序
时间: 2024-05-11 22:17:38 浏览: 103
C语言实现3个数从小到大排序/输出的方法示例
当然可以!以下是一个示例程序:
```c++
#include <iostream>
#include <algorithm>
using namespace std;
int main()
{
int a[3], b[3], c[3];
cout << "请输入第一个数组:\n";
cin >> a[0] >> a[1] >> a[2];
cout << "请输入第二个数组:\n";
cin >> b[0] >> b[1] >> b[2];
cout << "请输入第三个数组:\n";
cin >> c[0] >> c[1] >> c[2];
int d[9] = {a[0], a[1], a[2], b[0], b[1], b[2], c[0], c[1], c[2]};
sort(d, d+9);
cout << "排序后的数组为:\n";
for(int i=0;i<9;i++)
cout << d[i] << " ";
cout << endl;
return 0;
}
```
这个程序可以输入三个数组,然后将它们合并成一个数组,并按照从小到大的顺序排序输出。
阅读全文