作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的代码:
num1= int(input('Enter the first number: '))
num2= int(input('Enter the second number: '))
def hcf(num1,num2):
if num2==0:
return num1
else:
return hcf(num2, num1%num2)
print('The highest common factor', (hcf))
hcf(num1, num2)
它不像我想象的那样打印。我需要找到最大的公因数。
最佳答案
在这两个分支中,if
和 else
您使用 return
,因此之后没有执行任何代码,打印为 unreachable
.您可以存储该方法的结果(由 return
给出)然后打印它
def hcf(num1,num2):
if num2==0:
return num1
else:
return hcf(num2, num1%num2)
res = hcf(num1, num2)
print('The highest common factor is', res)
math
在 python
from math import gcd
res = gcd(num1, num2)
print('The greatest common divisor is', res)
关于python - 如何找到一对数的最大公因数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64542470/
我是一名优秀的程序员,十分优秀!