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