返回列表 發帖

二數中找出較大的數

本帖最後由 tonyh 於 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. }
複製代碼

TOP

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

  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. }            
複製代碼

TOP

本帖最後由 尤泓鈞 於 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;
}

TOP

返回列表