返回列表 發帖
本帖最後由 林少謙 於 2024-8-3 16:08 編輯
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x;
  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.     for(int i=0; i<=5; i++)
  14.     {
  15.         for(int j=0; j<=5; j++)
  16.         {
  17.             if(a[i]>a[j])
  18.             {
  19.                 x=a[j];
  20.                 a[j]=a[i];
  21.                 a[i]=x;
  22.             }
  23.         }

  24.     }
  25.     cout<<endl<<"排序後: ";
  26.     for(int i=0; i<=5; i++)
  27.     {
  28.         cout<<a[i]<<" ";
  29.     }

  30. }
複製代碼

TOP

返回列表