题解 | #求最小公倍数#

求最小公倍数

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

求最大公因数吧

```def f(a,b):
    for i in range(2,min(a,b)+1):
        if a%i==0 and b%i==0:
            c.append(i)
       
    if len(c)==0:
        return a*b
    else:
        return a*b/sorted(c)[-1]
s=input().split()
a=int(s[0])
b=int(s[1])
c=[]

    

print(int(f(a,b)))
全部评论

相关推荐

10-30 16:31
重庆大学 Java
代码飞升_不回私信人...:你说你善于学习,大家都会说。你说你是985,985会替你表达一切
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务