python
print("请输入两个数:")temp1=input("first")
x=int(temp1)
temp2=input('secong')
y=int(temp2)
def gcd(x,y):
p=max(x,y)
q=min(x,y)
if q==0:
return p
else:
r=p%q
return gcd(q,r)
各位大佬好,我想请问为什么我这个运行不出结果,谢谢大家 没有print('结果') 最下面加个
a = gcd(x,y)
print(a) 没调用函数,最后加一句
print(gcd(x,y)) 你的函数gcd只是定义了,但是没有调用
print("请输入两个数:")
temp1=input("first")
x=int(temp1)
temp2=input('secong')
y=int(temp2)
def gcd(x,y):
p=max(x,y)
q=min(x,y)
if q==0:
return p
else:
r=p%q
return gcd(q,r)
print(gcd(x,y))#函数需要调用,才会执行 sunrise085 发表于 2020-9-15 11:50
你的函数gcd只是定义了,但是没有调用
好滴,谢谢你 马露茜 发表于 2020-9-15 18:08
好滴,谢谢你
问题解决了,就给个最佳答案,结贴吧
页:
[1]