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

最大公约数和最小公倍数

时间:2014-07-24 22:08:12      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   art   re   

最大公约数:

代码:

bubuko.com,布布扣
 1 #include <stdio.h>
 2 #include <math.h>
 3 long long gcd(int x,int y )
 4 {
 5     return (y==0)?x:gcd(y,x%y);
 6 }
 7 
 8 int main()
 9 {
10     int m,n;
11     while(scanf("%d%d",&m,&n)!=EOF)
12     {
13         printf("%lld\n",gcd(m,n));
14     }
15     return 0;
16 }
View Code

最小公倍数:

代码:

bubuko.com,布布扣
 1 #include <stdio.h>
 2 #include <math.h>
 3 long long gcd(int x,int y )
 4 {
 5     return (y==0)?x:gcd(y,x%y);
 6 }
 7 
 8 int main()
 9 {
10     int m,n;
11     while(scanf("%d%d",&m,&n)!=EOF)
12     {
13         printf("%lld\n",m/gcd(m,n)*n);
14     }
15     return 0;
16 }
View Code

最大公约数和最小公倍数,布布扣,bubuko.com

最大公约数和最小公倍数

标签:style   blog   http   color   os   io   art   re   

原文地址:http://www.cnblogs.com/ZhaoPengkinghold/p/3866153.html

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