Commit 4f33f355 by BellCodeEditor

save project

parent fff4e43a
Showing with 8 additions and 0 deletions
def zhangzhixing(num):
if num==1:
return 1
b = num+zhangzhixing(num-1)
return b
a=zhangzhixing(100)
print(a)
\ No newline at end of file
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