python求最小公倍数
时间: 2023-10-11 18:09:26 浏览: 70
可以使用以下代码实现求最小公倍数:
```python
def lcm(x, y):
"""
求两个数的最小公倍数
"""
# 选择较大的数
if x > y:
greater = x
else:
greater = y
while True:
if greater % x == 0 and greater % y == 0:
lcm = greater
break
greater += 1
return lcm
# 例子
print(lcm(4, 6)) # 输出:12
```
也可以使用 math 模块提供的 gcd 函数求两个数的最大公约数,然后用公式 `a*b/gcd(a,b)` 计算最小公倍数:
```python
import math
def lcm(x, y):
"""
求两个数的最小公倍数
"""
return x * y // math.gcd(x, y)
# 例子
print(lcm(4, 6)) # 输出:12
```
相关问题
python 求最小公倍数
可以使用以下代码来求两个正整数的最小公倍数:
```python
def lcm(x, y):
# 获取两个数中的较大数
greater = max(x, y)
while True:
if greater % x == and greater % y == :
lcm = greater
break
greater += 1
return lcm
```
其中,`x`和`y`分别为两个正整数,`greater`为两个数中的较大数。通过循环判断,找到最小的能同时被`x`和`y`整除的数,即为它们的最小公倍数。最后返回最小公倍数`lcm`即可。
Python求最小公倍数
你好,对于你的问题,可以使用如下Python代码求得两个数的最小公倍数:
```python
def gcd(a, b):
if b == 0:
return a
else:
return gcd(b, a % b)
def lcm(a, b):
return a * b // gcd(a, b)
a = int(input("请输入第一个数:"))
b = int(input("请输入第二个数:"))
print("{}和{}的最小公倍数是{}".format(a, b, lcm(a,b)))
```
希望能够帮到你!
阅读全文