编程语言
首页 > 编程语言> > 一个排序小程序(上课)

一个排序小程序(上课)

作者:互联网

源程序:

#include <iostream>
using namespace std;

void sort(int L[],int n)
{
int j,k,flag,temp;
flag=n-1;
while(flag>0)
{
k=flag-1;
flag=0;
for(j=0;j<=k;j++)
{
if(L[j]>L[j+1])
{
temp=L[j];
L[j]=L[j+1];
L[j+1]=temp;
flag=j;
}
}
}
}
int main()
{
int array[4]={7,2,3,4};
sort(array,4);
cout<<"The sorted numbers:";
for(int i=0;i<4;i++)
cout<<array[i];
return 1;
}

 

标签:sort,上课,cout,temp,int,程序,flag,array,排序
来源: https://www.cnblogs.com/duanqibo/p/16062234.html