首页 > 代码库 > Python练习题 047:Project Euler 020:阶乘结果各数字之和
Python练习题 047:Project Euler 020:阶乘结果各数字之和
本题来自 Project Euler 第20题:https://projecteuler.net/problem=20
‘‘‘ Project Euler: Problem 20: Factorial digit sum n! means n × (n ? 1) × ... × 3 × 2 × 1 For example, 10! = 10 × 9 × ... × 3 × 2 × 1 = 3628800, and the sum of the digits in the number 10! is 3 + 6 + 2 + 8 + 8 + 0 + 0 = 27. Find the sum of the digits in the number 100! Answer: 648 ‘‘‘ n = 100 fac = 1 #初始化阶乘结果 while n >= 1: fac *= n n -= 1 # 提取出阶乘结果的每个数字,形成列表lst lst = [int(i) for i in str(fac)] res = 0 #初始化相加结果 for i in range(len(lst)): res += lst[i] print(res)
这题也容易,让先算出阶乘100的结果,然后把这结果的每个数字相加即可。
我想,应该是要练习递归阶乘吧,但我觉得用循环也挺方便的啊,就是很讨厌递归函数,总记不住写法,唉……
Python练习题 047:Project Euler 020:阶乘结果各数字之和
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。