标签:text .com clu htm int 公约数 基础 com ges
1012 最小公倍数LCM(51NOD基础题)
2个数A,B,中间用空格隔开。(1<= A,B <= 10^9)
输出A与B的最小公倍数。
30 105
210
#include <cstdio> #define LL long long LL n , m ; LL result ; // 递归实现辗转相除法 求最大公约数 LL GCD(LL a , LL b ){ if(b==0) return a ; return GCD(b , a%b) ; } // 求最小公倍数 LL LCM (LL a , LL b ){ return a/GCD(a , b ) * b ; } int main(){ while(~scanf("%lld%lld" , &n , &m)) { printf("%lld\n" , LCM(n , m )) ; } return 0 ; }
标签:text .com clu htm int 公约数 基础 com ges
原文地址:http://www.cnblogs.com/yi-ye-zhi-qiu/p/7553429.html