最小公倍数——辗转法 摘要:解题思路:辗转相除法注意事项:参考代码:a,b = map(int,input().split())c,d = a,bif a>b: a,b = b,ar = a%b while r !=0: …… 题解列表 2023年03月24日 0 点赞 0 评论 92 浏览 评分:0.0
1229基础解法(Python) 摘要:解题思路:直接调用Python的math库函数即可注意事项:Python 3.9 以上版本可以直接调用math.lcm()函数,其他版本只有math.gcd()函数参考代码:from math imp…… 题解列表 2023年03月06日 0 点赞 0 评论 82 浏览 评分:0.0
1229: 最小公倍数 摘要:解题思路:用递归的方法,就可以用简洁的代码解决了。注意事项:参考代码:n1,n2=map(int,input().split())def get(n1,n2): if n1%n2==0: …… 题解列表 2023年02月03日 0 点赞 0 评论 95 浏览 评分:0.0
1229: 最小公倍数 摘要:解题思路:注意事项:参考代码:a,b=map(int,input().split()) def get(a,b): if a%b==0: return b e…… 题解列表 2022年02月07日 0 点赞 1 评论 162 浏览 评分:0.0