hdu 1108 最小公倍數 lcm

2021-08-14 16:51:33 字數 755 閱讀 8979

problem description

給定兩個正整數,計算這兩個數的最小公倍數。

input

輸入包含多組測試資料,每組只有一行,包括兩個不大於1000的正整數.

output

對於每個測試用例,給出這兩個數的最小公倍數,每個例項輸出一行。

sample input

10 14

sample output

題意明確,沒有坑點,1000*1000**如下:

#include #include #include #include #include #include #include using namespace std;

long long int zxgbs(long long int a,long long int b)

}int main()

{ long long int cas,num,a,b,i,j;

// cout<<"s";

while(cin>>a>>b)

{cout給定兩個正整數,計算這兩個數的最小公倍數。

input

輸入包含多組測試資料,每組只有一行,包括兩個不大於1000的正整數.

output

對於每個測試用例,給出這兩個數的最小公倍數,每個例項輸出一行。

sample input

10 14

sample output

ACM 最小公倍數LCM

輸入2個正整數a,b,求a與b的最小公倍數。input 2個數a,b,中間用空格隔開。1 a,b 10 9 output 輸出a與b的最小公倍數。sample input 30 105 sample output 妙點 1 最小公倍數的做法是在最大公因數的基礎上的。最小公倍數 a b 最大公約數 2...

最小公倍數

最大公倍數最大是兩個數的乘積,兩個數互質 最大公約數是1 幾個數共有的倍數叫做這幾個數的公倍數,其中除0以外最小的乙個公倍數,叫做這幾個數的最小公倍數。記作 a,b 與最小公倍數相對應的概念是最大公約數,a,b的最大公約數記為 a,b 關於最小公倍數與最大公約數,我們有這樣的定理 a,b a,b a...

最小公倍數

問題描述 編寫一函式lcm,求解兩個正整數的最小公倍數。樣例輸入 乙個滿足題目要求的輸入樣例。例 3 5 樣例輸出 與上面樣例對應的輸出。例 15 資料規模和約定 輸入資料中每乙個數的範圍 例 兩個數都小於65536.演算法分析 一般來說,求兩個正整數a b的最小公倍數的演算法思路很簡單,主要分為以...