返回列表 發帖

三數中找出最大的數

本帖最後由 陳品肇 於 2021-11-20 11:28 編輯
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a,b,c;
  7.     // 輸入方法一  空白建隔開輸入的數值
  8.     //cin>>a;
  9.     //cin>>b;
  10.     //cin>>c;
  11.     // 輸入方法二 當有多個輸入可以 用 >> 往下接
  12.     cin>>a>>b>>c;
  13.     // tmp拿來暫存使用
  14.     int tmp=0;
  15.     // 邏輯方法1
  16.       if(a>b)
  17.     {
  18.        tmp =a;
  19.     }else
  20.     {
  21.        tmp =b;
  22.     }
  23.     if(tmp>c)
  24.     {
  25.        cout<<tmp<<endl;
  26.     }else
  27.     {        
  28.        cout<<c<<endl;
  29.     }
  30.     // 邏輯方法2
  31.     // 就是if else 的縮寫
  32.     // if(a>b) a>b是真的 就把a指派給tmp ,a>b是假的 就把冒號後面的指派給tmp
  33.     tmp = (a>b) ? a:b;
  34.     tmp = (tmp>c) ? tmp:c;
  35.     cout<<tmp<<endl;
  36.    
  37.     system ("pause");
  38.     return 0;
  39. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {  
  6.     int a,b,c;
  7.     cin>>a>>b>>c;
  8.     int tmp=0;
  9.     tmp = (a>b) ? a:b;
  10.     tmp = (tmp>c) ? tmp:c;
  11.     cout<<tmp<<endl;
  12.     system ("pause");
  13.     return 0;
  14. }
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a,b,c;
  7.     cin>>a>>b>>c;
  8.     int t=0;
  9.     t = (a>b) ? a:b;
  10.     t = (t>c) ? t:c;
  11.     cout<<t<<endl;
  12.     system ("pause");
  13.     return 0;
  14. }
複製代碼

TOP

[code][/code]#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
    int a,b,c;
    cin>>a>>b>>c;
    int tmp=0;
    if(a>b)
    {
       tmp =a;
    }else
    {
       tmp =b;
    }
    if(tmp>c)
    {
       cout<<tmp<<endl;
    }else
    {        
       cout<<c<<endl;
    }
system ("pause");
    return 0;
}

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5.    
  6. {
  7.    int x,y,z;
  8.    cin>>x>>y>>z;
  9.    int s =0;
  10.    s=x=y?x:y;
  11.    s =s > z ? s:z;
  12.    cout<<s<<endl;
  13.     system ("pause");
  14.     return 0;
  15. }
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a,b,c;
  7.     cin>>a>>b>>c;
  8.     int tmp=0;
  9.     tmp = (a>b) ? a:b;
  10.     tmp = (tmp>c) ? tmp:c;
  11.     cout<<tmp<<endl;
  12.     system ("pause");
  13.     return 0;
  14. }
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int tw=0;
  7.     int a,b,c;
  8.     cin>>a>>b>>c;
  9.     tw =(a>b) ? a:b ;
  10.     tw =(tw>c) ? tw:c;
  11.     cout<<tw<<endl;
  12.     system ("pause");
  13.     return 0;
  14. }
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. int x,y,z;
  7. cin>>x>>y>>z;
  8. int a=0;
  9. a =(x>y) ? x:y;
  10. a =(a>z) ? a:z;
  11. cout<<a<<endl;
  12.   system ("pause");
  13.     return 0;  
  14. }
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a,b,c;
  7.     cin>>a>>b>>c;

  8.     int tmp=0;
  9.     tmp = (a>b) ? a:b;
  10.     tmp = (tmp>c) ? tmp:c;
  11.     cout<<tmp<<endl;
  12.    
  13.     system ("pause");
  14.     return 0;
  15. }
複製代碼

TOP

本帖最後由 許宸瑀 於 2021-11-20 11:54 編輯
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.   int a, b,c;
  7.    cin>>a>>b>>c;
  8.    int tmp=0;
  9.    if(a>b)
  10.    {
  11.      tmp =a;
  12.    }else
  13.    {
  14.     tmp =b;   
  15.    }
  16.    if(tmp>c){
  17.        cout<<tmp<<endl;        
  18.    }else
  19.    {
  20.       cout<<c<<endl;   
  21.    }
  22.    
  23.       tmp = (a>b) ? a:b;
  24.       tmp = (tmp>c) ? tmp:c;
  25.       cout<<tmp<<endl;
  26.    
  27.     system ("pause");
  28.     return 0;
  29. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. int a,b,c,tmp;
  7. cout<<"請依序輸入三個數字:";   
  8.   cin>>a>>b>>c;
  9.    tmp = 0;
  10.    tmp = (a>b) ? a:b;
  11.    tmp = (tmp>c) ? tmp:c;
  12.    cout<<"三數中最大的數是:"<<tmp<<endl;   
  13. system("pause");   
  14. return 0;   
  15. }
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a,b,c;
  7.     cin>>a>>b>>c;
  8.     int tmp=0;
  9.     tmp = (a>b) ? a:b;
  10.     tmp = (tmp>c) ? tmp:c;
  11.     cout<<tmp<<endl;
  12.    
  13.     system ("pause");
  14.     return 0;
  15. }
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a,b,c;
  7.     cin>>a>>b>>c;
  8.     int tmp=0;

  9.     tmp = (a>b) ? a:b;
  10.     tmp = (tmp>c) ? tmp:c;
  11.     cout<<tmp<<endl;
  12.    
  13.     system ("pause");
  14.     return 0;
  15. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a,b,c;
  7.     cout<<"請輸入三個數字:";
  8.     cin>>a>>b>>c;
  9.     int x=0;
  10.     if(a>b)
  11.     {
  12.            x =a;
  13.     }else
  14.     {
  15.          x =b;
  16.     }
  17.     if(x>c)
  18.     {
  19.            cout<<"三數中最大的數為:"<<x<<endl;
  20.     }else
  21.     {
  22.          cout<<"三數中最大的數為:"<<c<<endl;
  23.     }
  24.     system("pause");
  25.     return 0;
  26.     }
複製代碼

TOP

  1. #include <cstdlib>
  2. using namespace std;
  3. int main()
  4. {
  5.     int a,b,c;
  6.     cout<<"請依序輸入三個數字:";  
  7.     cin>>a>>b>>c;
  8.     int tmp =0;
  9.     if(a>b)
  10.     {
  11.      tmp =a;
  12.     }else
  13.     {
  14.       tmp =b;   
  15.     }
  16.     cout<<"三數中最大的數是:";  
  17.     if(tmp>c)
  18.     {
  19.       cout<<tmp<<endl;      
  20.     }else
  21.     {
  22.       cout<<c<<endl;
  23.     }
  24. system ("pause");
  25. return 0;
  26. }
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a,b,c;
  7.     cin>>a>>b>>c;
  8.     int x;
  9.     x = (a>b) ? a:b;
  10.     x = (x>c) ? x:c;
  11.     cout<<x<<endl;
  12.    
  13.     system ("pause");
  14.     return 0;
  15. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a,b,c,tmp;
  7.     cout<<"請依序輸入三個數字:";
  8.     cin>>a>>b>>c;
  9.     tmp = (a>b) ? a:b;
  10.     tmp = (tmp>c) ? tmp:c;
  11.     cout<<"三個數中最大的數為:"<<tmp<<endl;
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼

TOP

返回列表