思维练习-5: 求1 到10 的阶乘之和
程序员文章站
2024-03-15 18:58:54
...
factorial = 1
total = 0
for i in range(1,11):
factorial = factorial * i
total = total + factorial
print(total)
上一篇: 求1到10的阶乘和
下一篇: C语言——求1到10的阶乘之和