標題:
034 三數字找出最大公因數
[打印本頁]
作者:
游東祥
時間:
2014-4-5 14:45
標題:
034 三數字找出最大公因數
輸入三個數字並輸出三個數字的最大公因數
作者:
林宇翔
時間:
2014-4-5 14:49
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x,y,z,a,b = 0;
cout << "請輸入第一個數字;" ;
cin >> x;
cout << "請輸入第二個數字;" ;
cin >> y;
cout << "請輸入第三個數字;" ;
cin >> z;
a= (x < y)? x : y;
a= (a < z)? a : z;
cout << "這些數字的最大公因數是:";
for(int i = 1; i <= z; i ++)
{
if (x % i == 0 && y % i == 0 && z % i == 0)
{
b = i;
}
}
cout << b << endl;
system ("pause");
return 0;
}
複製代碼
作者:
李允軒
時間:
2014-4-5 14:49
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int j;
int h;
int i;
cout << "請輸入一個數字";
cin >> h;
cout << "請輸入二個數字";
cin >> j;
cout << "請輸入三個數字";
cin >> i;
cout << "他們的最大公因數是:";
int l;
l = (h < j)? h : j;
l = (l < i)? l : i;
int max;
for (int m = 1; m <= l; m++)
{
if (h % m == 0 && j % m == 0 && i % m == 0)
{
max = m;
}
}
cout << max << endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2