小弟不才 最近才剛入門python 3
其中寫了兩個簡單的函式
第一個是使用遞迴方式 其中原本預期能回傳出做到第幾次(c)將終止
雖然有print 四次的c 但是回傳值消失
小弟寫了第二個使用while迴圈的方式 就能成功印出四次的c 並回傳出最後一次的c
實在想不出來是為什麼遞迴的方法return 不出來
請教各位高高手
def test(c, a, n):
c=c+1
b=(a+n)/2
if b<=(n/2+3):
print(c)
return c
else:
print(c)
test(c, b, n)
test(0, 10, 5) #print:1, 2, 3, 4
##############################
def test1(c, a, n):
t=0
while True:
t+=1
b=(a+n)/2
if b<=(n/2+3):
print(t)
return t
else:
print(t)
a=b
test1(0, 10, 5) #print: 1, 2, 3, 4;output: 4