Commit 23324792 by BellCodeEditor

save project

parent 4f5e92fe
Showing with 1 additions and 1 deletions
def func(n):
if n<=2:
return 2
return 1
elif n>2:
mum = func(n-1)+func(n-2)
return mum
......
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