8 lines
74 B
Python
Raw Normal View History

2025-02-27 22:25:34 +08:00
# 函数
def jc(n):
ans = 1;
for i in range(n):
ans *= i
return ans