题解 | N的阶乘
N的阶乘
https://www.nowcoder.com/practice/f54d8e6de61e4efb8cce3eebfd0e0daa
from math import factorial
while True:
try:print(factorial(int(input())))
except:break
N的阶乘
https://www.nowcoder.com/practice/f54d8e6de61e4efb8cce3eebfd0e0daa
from math import factorial
while True:
try:print(factorial(int(input())))
except:break
相关推荐