返回列表 發帖
本帖最後由 蔡季樺 於 2016-8-6 10:29 編輯

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a[8],b[8],tmp=0;
  7.     for(int i=0;i<8;i++)
  8.     {
  9.         cout<<"請輸入第"<<i+1<<"個數:";
  10.         cin>>a[i];
  11.     }
  12.     cout<<"排序前:";
  13.     for(int i=0;i<8;i++)
  14.     {
  15.         cout<<a[i]<<" ";
  16.     }
  17.     for(int i=0;i<8;i++)   
  18.     {   
  19.         tmp=a[i];
  20.         for(int j=i;j<8;j++)
  21.         {
  22.             if(a[j]<tmp)
  23.             {
  24.                 tmp=a[j];
  25.                 a[j]=a[i];
  26.                 a[i]=tmp;
  27.             }
  28.         }
  29.         b[i]=tmp;
  30.     }
  31.     cout<<endl;
  32.     cout<<"排序後:";
  33.     for(int i=0;i<8;i++)
  34.     {
  35.         cout<<b[i]<<" ";
  36.     }
  37.     cout<<endl;
  38.     system("pause");
  39.     return 0;
  40. }
複製代碼

TOP

返回列表