题解 2845: 求10000以内n的阶乘

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

python--study||O.o

摘要:参考代码:n = int(input()) res = 1 for i in range(1, n + 1):     res *= i print(res)……

秒懂的python代码

摘要:解题思路:利用for循环注意事项:for循环的范围“左闭右开”,应当为(1,n+1)参考代码:n=int(input())sum=1for i in range(1,n+1):    sum=sum*……

阶乘!z==0无意义

摘要:解题思路:注意事项:参考代码:z=int(input())           y=zi=1if z ==0:    print(1)else:    while i<z:           &n