码迷,mamicode.com
首页 > 其他好文 > 详细

51nod 1012最小公倍数LCM

时间:2017-08-17 14:36:38      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:c++   clu   scanf   class   output   pre   input   log   整数   

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

 
Input
2个数A,B,中间用空格隔开。(1<= A,B <= 10^9)
 
Output
输出A与B的最小公倍数。
 
Input示例
30 105
 
Output示例
210

最小公倍数与最大公约数之间有联系

 1 #include <bits/stdc++.h>
 2 using namespace std;
 3 typedef long long ll;
 4 ll gcd(ll x,ll y){
 5     return y?gcd(y,x%y):x;
 6 }
 7 
 8 ll gbs(ll x,ll y){
 9     return x/gcd(x,y)*y;
10 }
11       
12 int main(){
13     ll a,b; 
14     scanf("%lld %lld",&a, &b);
15     ll ans=gbs(a,b); 
16     printf("%lld\n",ans);
17     return 0; 
18 } 

 

51nod 1012最小公倍数LCM

标签:c++   clu   scanf   class   output   pre   input   log   整数   

原文地址:http://www.cnblogs.com/z-712/p/7381085.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!