返回列表 發帖
本帖最後由 蔡庭豪 於 2016-8-6 11:12 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.         int number[5],o[5],temp;
  7.         for(int x=0;x<5;x++){
  8.             cout<<"輸入第"<<x+1<<"數"<<endl;
  9.             cin>>number[x];         
  10.         }
  11.         cout<<"排序前"<<endl;
  12.         for(int y=0;y<5;y++){
  13.             cout<<number[y]<<",";         
  14.         }               
  15.         for(int i=0;i<sizeof(number)/sizeof(int);i++){
  16.                
  17.             for(int j=0;j<sizeof(number)/sizeof(int);j++){
  18.                     
  19.                 if(number[j]<number[j+1]){
  20.                     temp=number[j];
  21.                     number[j]=number[i];
  22.                     number[i]=temp;
  23.                 }
  24.                 else{
  25.                      o[i]=temp;
  26.                 }
  27.                                                 
  28.             }            
  29.         }
  30.         cout<<"排序後"<<endl;
  31.         for(int z=0;z<5;z++){
  32.             cout<<o[z]<<",";         
  33.         }                           
  34.         system("pause");
  35.         return 0;
  36. }
複製代碼

TOP

返回列表