2025-02-27 22:25:34 +08:00

8 lines
74 B
Python

# 函数
def jc(n):
ans = 1;
for i in range(n):
ans *= i
return ans