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

TOP

返回列表