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