標題:
二數中找出較大的數
[打印本頁]
作者:
tonyh
時間:
2011-11-12 15:56
標題:
二數中找出較大的數
本帖最後由 tonyh 於 2011-11-12 16:12 編輯
任意輸入兩個數值不相等的數, 電腦找出較大者.
本帖隱藏的內容需要回復才可以瀏覽
作者:
t3742238
時間:
2011-11-12 16:12
本帖最後由 t3742238 於 2011-11-12 16:16 編輯
#include <iostream>
using namespace std;
int main()
{
int a, b, max;
cout<<"請輸入第1個數: ";
cin>>a;
cout<<"請輸入第2個數: ";
cin>>b;
max=(a>b)?a:b;
cout<<"兩數中較大的數為"<<max;
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
劉漢文
時間:
2011-11-12 16:16
#include<iostream>
using namespace std;
int main()
{
int a,b,max;
cout<<"請輸入第一個數:";
cin>>a;
cout<<"請輸入第二個數:";
cin>>b;
max=(a>b)?a:b;
cout<<"兩數中較大的數為"<<max;
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
t8155745
時間:
2011-11-12 16:19
#include <iostream>
using namespace std;
int main()
{
int a,b,max;
cout<<"請輸入第一個數:";
cin>>a;
cout<<"請輸入第二個數:";
cin>>b;
max=(a>b)?a:b;
cout<<"兩數中較大的數為"<<max;
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡昀佑
時間:
2011-11-12 16:20
#include<iostream>
using namespace std;
int main()
{
int a,b,max;
cout<<"請輸入第一個數:";
cin>>a;
cout<<"請輸入第二個數:";
cin>>b;
max=(a>b)?a:b;
cout<<"兩數最大為"<<max;
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
許逸瑋
時間:
2011-11-12 16:32
#include<iostream>
using namespace std;
int main()
{
int a,b,max;
cout<<"請輸入第一個數:";
cin>>a;
cout<<"請輸入第二個數:";
cin>>b;
max=(a>b)?a:b;
cout<<"兩數中較大的數為"<<max;
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
t2364705
時間:
2011-11-19 14:11
#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;
}
複製代碼
作者:
尤泓鈞
時間:
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://istak.org.tw/seed/)
Powered by Discuz! 7.2