Commit f794f083 by BellCodeEditor

save project

parent c2c41000
Showing with 2 additions and 2 deletions
......@@ -3,8 +3,8 @@
def func(n):
if n<=2:
return 1
elif n>2:
return func(n-1)+func(n-2)
elif n>2:
return func(n-1)+func(n-2)
print(func(15))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment