P5739 【深基7.例7】计算阶乘(python3实现)
【深基7.例7】计算阶乘 - 洛谷
"""
P5739 【深基7.例7】计算阶乘(python3实现)
https://www.luogu.com.cn/problem/P5739
"""
def jc(n):
if n==1:
return 1
else:
return n*jc(n-1)
n=int(input())
ans=jc(n)
print(ans)
P2651 添加括号III(python3实现)https://blog.csdn.net/dllglvzhenfeng/article/details/122774379
P2660 zzc 种田( python3实现)https://blog.csdn.net/dllglvzhenfeng/article/details/122774803
P2911 [USACO08OCT]Bovine Bones G (p
共有 0 条评论