標題:
026 三數字找最大值
[打印本頁]
作者:
游東祥
時間:
2014-3-29 14:39
標題:
026 三數字找最大值
輸入三個數字並找到最大值。
作者:
林宇翔
時間:
2014-3-29 15:05
本帖最後由 林宇翔 於 2014-3-29 15:13 編輯
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a;
int b;
int c;
int e;
int f;
int g;
cout << "請輸入第一個數字:";
cin >> a;
cout << "請輸入第二個數字:";
cin >> b;
cout << "請輸入第三個數字:";
cin >> c;
e= (a > b)? a : b;
f= (b > c)? b : c;
g= (e > f)? e : f;
cout << "最大值" << g <<endl;
system ("pause");
return 0;
}
複製代碼
作者:
李允軒
時間:
2014-3-29 15:16
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int i;
int j;
int k;
cout << "請輸入第一個數字:";
cin >>i;
cout << "請輸入第二個數字:";
cin >>j;
cout << "請輸入第三個數字:";
cin >>k;
int g,e,f;
e = (i > j) ? i : j ;
g = (e > k) ? e : k ;
f = (g > e) ? g : e ;
cout << "最大值:" << f << endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2