Commit 9e247f80 by BellCodeEditor

save project

parent faaeae9e
Showing with 9 additions and 0 deletions
def u(n):
if n == 1:
return 1
num = u(n-1)+n
return num
u_num = u(100)
print(u_num)
\ 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