返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int t;
  7.     int a[]{-1,-100,3,59,-41,94};
  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.         for(int j=i+1;j<=5;j++){
  15.             if(a[i]>a[j])
  16.             {
  17.                 t=a[j];
  18.                 a[j]=a[i];
  19.                 a[i]=t;
  20.             }

  21.         }


  22.     }

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

  28.     system("pause");

  29.     return 0;

  30. }
複製代碼

TOP

返回列表