返回列表 發帖

三數比大小 (不考慮兩數或三數相等的情況)

試設計一個小程式, 讓使用者任意輸入三個數, 接著電腦回應出這三個數的大小順序, 由大而小排列出.
譬如:
當使用者依序輸入5, 12, 3, 電腦會回應 "12>5>3"
當使用者依序輸入7, 2, 11, 電腦會回應 "11>7>2"
當使用者依序輸入7, 7, 11, 電腦會回應 "其中兩個數, 或三個數相等!"
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int x,y,z;
  8.     cout<<"請任意輸入三個數:";
  9.     cin>>x>>y>>z;
  10.    
  11.     if(x>y && y>z)
  12.     {
  13.         cout<<x<<">"<<y<<">"<<z<<endl; //x>y>z
  14.     }else if(x>z && z>y)
  15.     {
  16.         cout<<x<<">"<<z<<">"<<y<<endl; //x>z>y
  17.     }else if(y>z && z>x)
  18.     {
  19.         cout<<y<<">"<<z<<">"<<x<<endl; //y>z>x
  20.     }else if(y>x && x>z)
  21.     {
  22.         cout<<y<<">"<<x<<">"<<z<<endl; //y>x>z
  23.     }else if(z>x && x>y)
  24.     {
  25.         cout<<z<<">"<<x<<">"<<y<<endl; //z>x>y
  26.     }else if(z>y && y>x)
  27.     {
  28.         cout<<z<<">"<<y<<">"<<x<<endl; //z>y>x
  29.     }else
  30.     {
  31.         cout<<"其中兩個數, 或三個數相等!"<<endl;
  32.     }
  33.     goto re;
  34.     system("pause");
  35.     return 0;
  36. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int a,b,c;
  8.     cout<<"\n請依序輸入三個數: ";
  9.     cin>>a>>b>>c;
  10.     if(a>b&&b>c)
  11.     {
  12.         cout<<a<<">"<<b<<">"<<c<<endl;            
  13.     }else if(a>c&&c>b)
  14.     {
  15.         cout<<a<<">"<<c<<">"<<b<<endl;
  16.     }else if(b>a&&a>c)
  17.     {
  18.         cout<<b<<">"<<a<<">"<<c<<endl;
  19.     }else if(b>c&&c>a)
  20.     {
  21.         cout<<b<<">"<<c<<">"<<a<<endl;
  22.     }else if(c>a&&a>b)
  23.     {
  24.         cout<<c<<">"<<a<<">"<<b<<endl;
  25.     }else if(c>b&&b>a)
  26.     {
  27.         cout<<c<<">"<<b<<">"<<a<<endl;
  28.     }else
  29.     {
  30.         cout<<"其中兩個數, 或三個數相等!\n";
  31.     }
  32.     goto re;
  33.     system("pause");
  34.     return 0;   
  35. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     start:
  7.     int a,b,c;
  8.     cout<<"請輸入3個任意數:";
  9.     cin>>a>>b>>c;
  10.     if(a>b && b>c)
  11.     {
  12.            cout<<a<<">"<<b<<">"<<c<<endl;
  13.     }else if(a>c && c>b)
  14.     {
  15.           cout<<a<<">"<<c<<">"<<b<<endl;
  16.     }else if(b>a && a>c)
  17.     {
  18.           cout<<b<<">"<<a<<">"<<c<<endl;
  19.     }else if(b>c && c>a)
  20.     {
  21.           cout<<b<<">"<<c<<">"<<a<<endl;
  22.     }else if(c>a && a>b)
  23.     {
  24.           cout<<c<<">"<<a<<">"<<b<<endl;
  25.     }else if(c>b&& b>a)
  26.     {
  27.           cout<<c<<">"<<b<<">"<<a<<endl;
  28.     }else
  29.     {
  30.           cout<<"其中有2個數,或3個數相等~"<<endl;
  31.     }
  32.     goto start;
  33.     system("pause");
  34.     return 0;
  35. }
複製代碼
回復 1# 陳品肇

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x,y,z;
  7.     cout<<"請輸入三個整數:";
  8.     cin>>x>>y>>z;
  9.    
  10.     if(x>y && y>z)
  11.     {
  12.         cout<<x<<">"<<y<<">"<<z<<endl;
  13.     }else if(x>z && z>y)
  14.     {
  15.         cout<<x<<">"<<z<<">"<<y<<endl;
  16.     }else if(y>z && z>x)
  17.     {
  18.         cout<<y<<">"<<z<<">"<<x<<endl;
  19.     }else if(y>x && x>z)
  20.     {
  21.         cout<<y<<">"<<x<<">"<<z<<endl;
  22.     }else if(z>x && x>y)
  23.     {
  24.         cout<<z<<">"<<x<<">"<<y<<endl;
  25.     }else if(z>y && y>x)
  26.     {
  27.         cout<<z<<">"<<y<<">"<<x<<endl;
  28.     }else
  29.     {
  30.         cout<<"[其中兩個或三個數相等]"<<endl;
  31.     }
  32.     system("pause");
  33.     return 0;
  34. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int x,y,z;
  8.     cout<<"請任意輸入三個整數:";
  9.     cin>>x>>y>>z;
  10.     if(x>y && y>z)
  11.     {
  12.         cout<<x<<">"<<y<<">"<<z<<endl;
  13.     }
  14.     else if(x>z && z>y)
  15.     {
  16.          cout<<x<<">"<<z<<">"<<y<<endl;
  17.     }
  18.     else if(y>x && x>z)
  19.     {
  20.          cout<<y<<">"<<x<<">"<<z<<endl;
  21.     }
  22.     else if(y>z && z>x)
  23.     {
  24.          cout<<y<<">"<<z<<">"<<x<<endl;
  25.     }
  26.     else if(z>x && x>y)
  27.     {
  28.          cout<<z<<">"<<x<<">"<<y<<endl;
  29.     }
  30.     else if(z>y && y>x)
  31.     {
  32.          cout<<z<<">"<<y<<">"<<x<<endl;
  33.     }
  34.     else
  35.     {
  36.          cout<<"其中兩個數或三個數相等"<<endl;   
  37.     }
  38.     goto re;
  39.     system("pause");
  40.     return 0;
  41. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   re:
  6.     int x,y,z;
  7.     cout<<"請輸入任意三個數:";
  8.     cin>>x>>y>>z;
  9.     if(x>y && y>z)
  10.     {
  11.     cout<<x<<">"<<y<<">"<<z;      
  12.     }else if(x>z && z>y)
  13.     {
  14.     cout<<x<<">"<<z<<">"<<y;      
  15.     }else if(y>x && x>z)
  16.     {
  17.     cout<<y<<">"<<x<<">"<<z;      
  18.     }else if(y>z && z>x)
  19.     {
  20.     cout<<y<<">"<<z<<">"<<x;      
  21.     }else if(z>x && x>y)
  22.     {
  23.     cout<<z<<">"<<x<<">"<<y;      
  24.     }else if(z>y && y>x)
  25.     {
  26.     cout<<z<<">"<<y<<">"<<x;      
  27.     }else
  28.     {
  29.     cout<<"其中兩個數, 或三個數相等!";      
  30.     }
  31.     goto re;
  32.          
  33.     system("pause");
  34.     return 0;
  35. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. int x,y,z;
  7.     cout<<"請任意輸入三個數:";
  8.     cin>>x>>y>>z;
  9.     if(x>y && y>z)
  10.     {
  11.      cout<<"x>y>z"<<endl;      
  12.     }
  13.     else if(x>z && z>y)
  14.     {
  15.      cout<<"x>z>y"<<endl;      
  16.     } else if(y>z && z>x)
  17.     {
  18.      cout<<"y>z>x"<<endl;      
  19.     } else if(y>x && x>z)
  20.     {
  21.      cout<<"y>x>z"<<endl;      
  22.     }else if(z>x && x>y)
  23.     {
  24.      cout<<"z>x>y"<<endl;      
  25.     }else if(z>y && y>x)
  26.     {
  27.      cout<<"z>y>x"<<endl;      
  28.     }else if(x=y>z)
  29.     {
  30.      cout<<"x=y>z"<<endl;      
  31.     }else if(x=z && z>y)
  32.     {
  33.      cout<<"x=z>y"<<endl;      
  34.     }else if(z=y && y>x)
  35.     {
  36.      cout<<"z=y>x"<<endl;            
  37.     }
  38.      else
  39.      {
  40.       cout<<"x=y=z"<<endl;      
  41.       }
  42.    
  43. system("pause");
  44. return 0;
  45. }
複製代碼

TOP

本帖最後由 洪寬瀧 於 2018-12-8 14:54 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    jeb:
  7.    int j,e,b;   
  8.     cout<<"請任意輸入三個數:";
  9.     cin>>j>>e>>b;
  10.    if(j>e && e>b)
  11.     {
  12.           cout<<j<<">"<<e<<">"<<b<<endl;
  13.     }else if(e>b && b>j)
  14.     {
  15.      cout<<e<<">"<<b<<">"<<j<<endl;     
  16.     }else if(b>j && j>e)
  17.     {
  18.     cout<<b<<">"<<j<<">"<<e<<endl;   
  19.     }else if(b>e && e>j)
  20.     {
  21.     cout<<b<<">"<<e<<">"<<j<<endl;
  22.     }else if(j>b && b>e)
  23.     {
  24.           cout<<j<<">"<<b<<">"<<e<<endl;
  25.     }else if(e>j && j>b)
  26.     {
  27.     cout<<e<<">"<<j<<">"<<b<<endl;
  28.     }else cout<<"其中兩個數, 或三個數相等!!!!!!!!"<<endl;
  29.                              
  30.    
  31.    
  32.          
  33.   goto jeb;                                   //gpf 66hbnfbgdvvvvvdfvaesvasvvds
  34.         system("pause");
  35.         return 0;
  36. }
複製代碼
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
   jeb:
   int j,e,b;   
    cout<<"請任意輸入三個數:";
    cin>>j>>e>>b;
   if(j>e && e>b)
    {
          cout<<j<<">"<<e<<">"<<b<<endl;
    }else if(e>b && b>j)
    {
     cout<<e<<">"<<b<<">"<<j<<endl;     
    }else if(b>j && j>e)
    {
    cout<<b<<">"<<j<<">"<<e<<endl;   
    }else if(b>e && e>j)
    {
    cout<<b<<">"<<e<<">"<<j<<endl;
    }else if(j>b && b>e)
    {
          cout<<j<<">"<<b<<">"<<e<<endl;
    }else if(e>j && j>b)
    {
    cout<<e<<">"<<j<<">"<<b<<endl;
    }else cout<<"其中兩個數, 或三個數相等!!!!!!!!"<<endl;
                             
   
   
         
  goto jeb;                                   //gpf 66hbnfbgdvvvvvdfvaesvasvvds
        system("pause");
        return 0;
}

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int a,b,c;
  8.     cout<<"\n請依序輸入三個數: ";
  9.     cin>>a>>b>>c;
  10.     if(a>b && b>c)
  11.     {
  12.         cout<<a<<">"<<b<<">"<<c<<endl;            
  13.     }else if(a>c && c>b)
  14.     {
  15.         cout<<a<<">"<<c<<">"<<b<<endl;
  16.     }else if(b>a && a>c)
  17.     {
  18.         cout<<b<<">"<<a<<">"<<c<<endl;
  19.     }else if(b>c && c>a)
  20.     {
  21.         cout<<b<<">"<<c<<">"<<a<<endl;
  22.     }else if(c>a && a>b)
  23.     {
  24.         cout<<c<<">"<<a<<">"<<b<<endl;
  25.     }else if(c>b && b>a)
  26.     {
  27.         cout<<c<<">"<<b<<">"<<a<<endl;
  28.     }else
  29.     {
  30.         cout<<"其中兩個數, 或三個數相等!\n";
  31.     }
  32.     goto re;
  33.     system("pause");
  34.     return 0;   
  35. }
複製代碼

TOP

返回列表