编写C+,定义一个排序函数Sort,在主函数中输入N个整数,传递给Sort函数,并输出显示后的结果

2024-12-28 21:41:24
推荐回答(1个)
回答1:

C++实现排序函数Sort,参考代码如下:
#include
using namespace std;
#define N 5
void Sort(int b[],int n)
{
int i,j,t;
for(i=0;ifor(j=0;jif(b[j]>b[j+1]){
t=b[j];
b[j]=b[j+1];
b[j+1]=t;
}
}
int main()
{
int i,a[N];
cout << "输入"<for(i=0;icin >> a[i];
Sort(a,N);
cout << "升序排列后:"<for(i=0;icout << a[i]<<" ";
return 0;
}