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

TOP

返回列表