Board logo

標題: 二數中找出較大的數 [打印本頁]

作者: tonyh    時間: 2011-11-12 15:56     標題: 二數中找出較大的數

本帖最後由 tonyh 於 2011-11-12 16:12 編輯

任意輸入兩個數值不相等的數, 電腦找出較大者.
本帖隱藏的內容需要回復才可以瀏覽

作者: t3742238    時間: 2011-11-12 16:12

本帖最後由 t3742238 於 2011-11-12 16:16 編輯
  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int a, b, max;
  6.     cout<<"請輸入第1個數: ";
  7.     cin>>a;
  8.     cout<<"請輸入第2個數: ";
  9.     cin>>b;
  10.     max=(a>b)?a:b;
  11.     cout<<"兩數中較大的數為"<<max;
  12.     cout<<endl;
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

作者: 劉漢文    時間: 2011-11-12 16:16

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int a,b,max;
  6.     cout<<"請輸入第一個數:";
  7.     cin>>a;
  8.     cout<<"請輸入第二個數:";
  9.     cin>>b;
  10.     max=(a>b)?a:b;
  11.     cout<<"兩數中較大的數為"<<max;
  12.     cout<<endl;
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

作者: t8155745    時間: 2011-11-12 16:19

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int a,b,max;
  6.      cout<<"請輸入第一個數:";
  7.      cin>>a;
  8.      cout<<"請輸入第二個數:";
  9.      cin>>b;
  10.      max=(a>b)?a:b;
  11.      cout<<"兩數中較大的數為"<<max;
  12.      cout<<endl;
  13.    
  14.   system("pause");
  15.   return 0;  
  16.    
  17. }
複製代碼

作者: 蔡昀佑    時間: 2011-11-12 16:20

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.   int a,b,max;
  6.   cout<<"請輸入第一個數:";
  7.   cin>>a;
  8.   cout<<"請輸入第二個數:";
  9.   cin>>b;
  10.   max=(a>b)?a:b;
  11.   cout<<"兩數最大為"<<max;  
  12.   cout<<endl;  
  13.    
  14.    
  15.    
  16.   system("pause");
  17.   return 0;   
  18.    
  19. }
複製代碼

作者: 許逸瑋    時間: 2011-11-12 16:32

  1. #include<iostream>

  2. using namespace std;

  3. int main()

  4. {

  5.     int a,b,max;

  6.     cout<<"請輸入第一個數:";

  7.     cin>>a;

  8.     cout<<"請輸入第二個數:";

  9.     cin>>b;

  10.     max=(a>b)?a:b;

  11.     cout<<"兩數中較大的數為"<<max;

  12.     cout<<endl;

  13.     system("pause");

  14.     return 0;

  15. }
複製代碼

作者: t2364705    時間: 2011-11-19 14:11

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int a,b,max;
  6.     cout<<"請輸入第一個數";
  7.     cin>>a;
  8.     cout<<"請輸入第二個數";
  9.     cin>>b;
  10.     max=(a>b)?a:b;
  11.     cout<<"兩數中比較大者為"<<max<<endl;                           
  12. system("pause");
  13. return 0;
  14. }            
複製代碼

作者: 尤泓鈞    時間: 2011-11-19 14:20

本帖最後由 尤泓鈞 於 2011-11-19 15:04 編輯

#include<iostream>
using namespace std;
int main()
{
    int a,b,max;
    cout<<"請輸入第一個數";
    cin>>a;
    cout<<"請輸入第二個數";
    cin>>b;
    max=(a>b)?a:b;
    cout<<"兩數中比較大者為"<<max<<endl;                           
system("pause");
return 0;
}




歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2