Commit 89926d9c by BellCodeEditor

auto save

parent df94e877
Showing with 2 additions and 2 deletions
...@@ -6,8 +6,8 @@ def func(n): ...@@ -6,8 +6,8 @@ def func(n):
elif n>2: elif n>2:
value=func(n-1)+func(n-2) value=func(n-1)+func(n-2)
return value return value
resule=func(8) result=func(8)
print(resule) print(result)
......
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