Python 求最小公倍数的三种方法

发布时间:2024年01月22日

方法一:辗转相除法

a,b = map(int,input().split())
c,d = a,b
if a>b:
    a,b = b,a
r = a%b 
while r !=0:
    a,b = b,r 
    r = a%b
print(c*d//b)

方法二:自定义函数法

a,b=map(int,input().split())
def get(a,b):
    if a%b==0:
        return b 
    else:
        return get(b,a%b)
print(a*b//get(a,b))

方法三:调用库函数法

from math import *
n, m = map(int, input().split())
print(int(n * m / gcd(n, m)))

文章来源:https://blog.csdn.net/2201_75557289/article/details/135737120
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。