返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int s=0;
  7.     int n[]={12,57,-6,-32,0,23};
  8.     cout<<"排序前:";
  9.     for(int i=0;i<=5;i++){
  10.         cout<<n[i]<<" ";
  11.     }
  12.     cout<<endl<<endl;
  13.     for(int j=0;j<5;j++){
  14.         for(int k=j+1;k<=5;k++){
  15.             if(n[k]<n[j]){
  16.                 s=n[k];
  17.                 n[k]=n[j];
  18.                 n[j]=s;
  19.             }

  20.         }
  21.     }

  22.     cout<<"排序後:";
  23.     for(int i=0;i<=5;i++){
  24.         cout<<n[i]<<" ";
  25.     }

  26.     system("pause");
  27.     return 0;

  28. }
複製代碼

TOP

返回列表