Commit 419cd8c2 by BellCodeEditor

save project

parent 0f53c1f3
Showing with 22 additions and 0 deletions
def sun(n):
if n==1:
return 1
value=n+sun(n-1)
return value
q=sun(10)
print(q)
\ No newline at end of file
def sun(n):
if n==1:
return 1
value=n+sun(n-1)
r
\ No newline at end of file
def sun(n):
i
\ No newline at end of file
def sun(n):
if n==1:
return 1
value=n+sun(n-1)
\ 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