標題:
027 三數字找最小值
[打印本頁]
作者:
游東祥
時間:
2014-3-29 15:12
標題:
027 三數字找最小值
輸入三個數字並找到最小值。
作者:
李允軒
時間:
2014-3-29 15:17
#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;
}
複製代碼
作者:
林宇翔
時間:
2014-4-4 09:01
#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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2