返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main ()
  5. {
  6.    int a,b,c;
  7.    cout<<"please enter the first number:";
  8.    cin>>a;
  9.    cout<<"please enter the second number:" ;
  10.     cin>>b;
  11.    cout<<"please enter the THIRD number:";
  12.    cin>>c;
  13.    if(a>b && b>c)
  14.    {
  15.          
  16.    cout<<a<<">"<<b<<">"<<c<<endl;      
  17.    }else if(a>c && c>b)
  18.    {
  19.    cout<<a<<">"<<c<<">"<<b<<endl;              
  20.    }else if(b>a && a>c)
  21.    {
  22.     cout<<b<<">"<<a<<">"<<c<<endl;
  23.    }else if(b>c && c>a)
  24.    {
  25.    cout<<b<<">"<<c<<">"<<a<<endl;
  26.    }else if(c>a && a>b)
  27.    {
  28.     cout<<c<<">"<<a<<">"<<b<<endl;
  29.    }else if(c>b && b>a)
  30.    {
  31.     cout<<c<<">"<<b<<">"<<a<<endl;
  32.    }else
  33.    {
  34.    cout<<  "其中兩個數, 或三個數相等!"  <<endl;        
  35.    }
  36. system("pause");
  37. return 0;
  38. }
  39.    
複製代碼

TOP

返回列表