1012 最小公倍数LCM

Posted watchfree

tags:

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

1012 最小公倍数LCM

基准时间限制:秒 空间限制:131072 KB 

输入2个正整数AB,求AB的最小公倍数。

Input

2个数A,B,中间用空格隔开。(1<= A,B <= 10^9)

Output

输出AB的最小公倍数。

Input示例

30 105

Output示例

210

import java.util.Scanner;
public class Main {
    static long gcd(long a,long b){
        return a%b==0? b:gcd(b,a%b);
    }
    static long LCM(long a,long b){
        return a*b/gcd(a,b);
    }

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        Scanner sc=new Scanner(System.in);
        while(sc.hasNext()){
            long a=sc.nextLong();
            long b=sc.nextLong();
            System.out.println(LCM(a,b));
            
        }
        sc.close();


    }

}

 

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

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

51nod 1012最小公倍数LCM

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

GCD与LCM

数论--最大公约数gcd和最小公倍数lcm

最小公倍数-lcm