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

TOP

返回列表