返回列表 發帖

RE: 請讓使用者輸入三個數字排順序

  1. #include<iostream>
  2. using namespace std;

  3. int main(){
  4.   int num[3];
  5.   int min;
  6.   int a,b,c;
  7.   cout << "Please enter a number A: " << endl;  
  8.   cin >> a;
  9.   cout << "Please enter a number B: " << endl;  
  10.   cin >> b;
  11.   cout << "Please enter a number C: " << endl;  
  12.   cin >> c;
  13.   num[0]=a;
  14.   num[1]=b;
  15.   num[2]=c;
  16.   for(int i=0; i<3; i++){
  17.     for(int j=i ; j<3; j++){
  18.         if(num[i]<num[j]){   
  19.                           min=num[i];num[i]=num[j];num[j]=min;
  20.     }                     
  21.     }
  22.   } cout << num[0]<<">"<<num[1]<<">"<<num[2]<<endl;
  23.    for(int i=3; i>0; i--){
  24.     for(int j=i ; j>0; j--){
  25.         if(num[i]<num[j]){   
  26.                           min=num[i];num[i]=num[j];num[j]=min;
  27.     }                     
  28.     }
  29.   }  cout << num[0]<<"<"<<num[1]<<"<"<<num[2]<<endl;
  30.   system("Pause");
  31.   return 0;  
  32. }
複製代碼
張雅淳

TOP

返回列表