您的位置:首页 > 其它

52nod 1012最小公倍数LCM

2016-02-02 10:02 302 查看
1012 最小公倍数LCM


基准时间限制:1 秒 空间限制:131072 KB 分值: 0 难度:基础题


收藏


关注

输入2个正整数A,B,求A与B的最小公倍数。

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


Output
输出A与B的最小公倍数。


Input示例
30 105


Output示例
210

代码:

#include<cstdio>
int main()
{
long long n,m,c;
long long shu;
scanf("%lld%lld",&n,&m);
shu=n*m;
if (n>m)
{
c=n;n=m;m=c;
}
while (m%n)
{
c=n;
n=m%n;
m=c;
}
shu/=n;
printf("%lld\n",shu);
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: