8 lines
74 B
Python
8 lines
74 B
Python
# 函数
|
|
def jc(n):
|
|
ans = 1;
|
|
for i in range(n):
|
|
ans *= i
|
|
return ans
|
|
|