返回列表 發帖
  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int x;
  8.     srand(time(NULL));
  9.     int a[]{-32,45,5,-67};


  10.     cout<<"排序前: ";
  11.     for(int i=0; i<=3; i++)
  12.     {
  13.         cout<<a[i]<<" ";
  14.     }

  15.     for(int i=0; i<=3; i++)
  16.     {
  17.         for(int j=0; j<=3; j++)
  18.         {
  19.             if(a[i]>a[j])
  20.             {
  21.                 x=a[j];
  22.                 a[j]=a[i];
  23.                 a[i]=x;
  24.             }
  25.         }

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

  32. }
複製代碼

TOP

返回列表