问题描述
解决方案
因为你的gcd函数没有返回值,只有b==0的时候才返回a,这样改就行了
def gcd(a,b):
if b!=0:
return gcd(b,a%b)
elif b==0:
return a
时间: 2024-12-30 04:42:31
因为你的gcd函数没有返回值,只有b==0的时候才返回a,这样改就行了
def gcd(a,b):
if b!=0:
return gcd(b,a%b)
elif b==0:
return a