<span>产生10个随机数,用比较法排序,从大到小输出(降序)</span>
比较法排序:
1 #include <iostream> 2 #include<ctime> 3 #include<cstdlib> 4 using namespace std; 5 6 int main() { 7 int a[10] ,i,j,t; 8 srand(time(0)); //srand()函数根据当前时间产生随机数 9 t=rand(); 10 for(i=0;i<=10;i++){ 11 a[i] = rand()%100 +100; //10个随机整数,区间为【100,199】 12 cout<<a[i]<<"\t"; 13 } 14 cout<<endl; 15 //比较法排序 16 for(i=0;i<=10;i++){ 17 for(j=i+1;j<=10;j++){ 18 if(a[i]<a[j]){ 19 t=a[i];a[i]=a[j];a[j]=t; //交换a[i]与a[j] 20 } 21 } 22 } 23 //排序后,输出 24 for(i=0;i<=10;i++){ 25 cout<<a[i]<<"\t";
26 } 27 28 return 0; 29 }