欧拉工程-问题20
文章目錄
原题链接 http://projecteuler.net/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!
n!的意思是 n (n - 1) … 3 2 * 1
例如,10! = 10 9 … 3 2 * 1 = 3628800,
在10!这个数中的数字之和是 3 + 6 + 2 + 8 + 8 + 0 + 0 = 27.
求100!这个数中的数字之和。
解答:
这题没什么好说的,没找到什么规律。只好算出100!用Python很随意。