题解 | #求最小公倍数#

求最小公倍数

https://www.nowcoder.com/practice/22948c2cad484e0291350abad86136c3

from string import printable
import sys
a,b = map(int,input().split()) #输入的字符串根据split分裂后再使用map函数将字符类型转化为int型
if a>b:
    a,b = b,a
if b%a==0:#考虑a是b的约数
    print(b)
else:
    for i in range(a-1,0,-1):
        if a%i==0 and b%i==0:#反向取值找到a和b的最大公约数
            print(int(a*b/i)) 
            break

全部评论

相关推荐

点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务