返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int tmp;
  7.     int a[]{5,6,3,1,4,2};
  8.     cout<<"排序前: ";
  9.     for(int i=0; i<=5; i++)
  10.     {
  11.         cout<<a[i]<<" ";
  12.     }
  13.     cout<<endl;
  14.     for(int i=0; i<=5; i++){
  15.         for(int j=0; j<=5; j++){
  16.             if(a[i]>a[j])
  17.             {
  18.                 tmp=a[j];
  19.                 a[j]=a[i];
  20.                 a[i]=tmp;
  21.             }
  22.         }
  23.     }
  24.     cout<<"排序後: ";
  25.     for(int i=0; i<=5; i++)
  26.     {
  27.         cout<<a[i]<<" ";
  28.     }
  29. }
複製代碼

TOP

返回列表