码迷,mamicode.com
首页 > 编程语言 > 详细

python 最小公倍数

时间:2016-12-04 00:34:09      阅读:317      评论:0      收藏:0      [点我收藏+]

标签:log   img   cat   input   cte   tor   style   sed   http   

最小公倍数

求解两个整数(不能是负数)的最小公倍数

方法一:穷举法
技术分享
 1 def LCM(m, n):
 2 
 3     if m*n == 0:
 4         return 0
 5     if m > n:
 6         lcm = m
 7     else:
 8         lcm = n
 9 
10     while lcm%m or lcm%n:
11         lcm += 1
12 
13     return lcm
View Code

 方式二:公式lcm = a*b/gcd(a, b)

技术分享
 1 def gcd(m,n):
 2 
 3     if not n:
 4         return m
 5     else:
 6         return gcd(n, m%n)
 7 
 8 def LCM(m, n):
 9 
10     if m*n == 0:
11         return 0
12     return int(m*n/gcd(m, n))
13 
14 if __name__ == __main__:
15     a = int(input(Please input the first integers : ))
16     b = int(input(Please input the second integers : ))
17     result = LCM(a, b)
18     print(lcm = , result)
View Code

 




python 最小公倍数

标签:log   img   cat   input   cte   tor   style   sed   http   

原文地址:http://www.cnblogs.com/todayisafineday/p/6129922.html

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