码迷,mamicode.com
首页 > 编程语言 > 详细

python:递归算法求和1-100

时间:2018-06-30 21:54:01      阅读:943      评论:0      收藏:0      [点我收藏+]

标签:递归算法   python   and   else   TE   ==   pre   输入   style   

#递归算法求和1-100
def qiehe():
def he(lis):
if lis == []:
return 0
return lis[0] + he(lis[1:len(lis)])
s = []
n = input("请输入数字:")
for i in range(1, int(n)):
s.append(i)
print(he(s))
qiehe()
def sum(max):
    if max <= 100 and max >= 0:
        return max +sum(int(max) - 1)
    else:
        return 0
print(sum(100))

 

python:递归算法求和1-100

标签:递归算法   python   and   else   TE   ==   pre   输入   style   

原文地址:https://www.cnblogs.com/shishandeda/p/9248700.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!