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

TOP

返回列表