Commit dc3829e8 by BellCodeEditor

save project

parent a6ed3b8e
Showing with 9 additions and 0 deletions
def ww(n):
if n<=2:
return 1
e = ww(n-1) + ww(n-2)
return e
result = ww(100)
print(result)
\ No newline at end of file
++ "b/\345\271\270\347\246\217v"
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