下面程序输出的是
def func(x):
if x%2 == 1:
return x+1
else:
return func(x-1)
print(func(9))
print(func(6))
10
6
9
7