51NOD-01012 最小公倍数LCM

Posted ONION_CYC

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了51NOD-01012 最小公倍数LCM相关的知识,希望对你有一定的参考价值。

【算法】欧几里德算法

技术分享
#include<cstdio>
int gcd(int a,int b)
{return b==0?a:gcd(b,a%b);}
int main()
{
    int a,b;
    scanf("%d%d",&a,&b);
    printf("%lld",1ll*a*b/gcd(a,b));
    return 0;
}
View Code

 

以上是关于51NOD-01012 最小公倍数LCM的主要内容,如果未能解决你的问题,请参考以下文章

1012 最小公倍数LCM(51NOD基础题)

51nod 1434 区间LCM 素数

51NOD 1434 区间LCM(素数筛)

51nod 1012最小公倍数LCM

51nod 1190 最小公倍数之和 V2

题目1439:Least Common Multiple(求m个正数的最小公倍数lcm)