编写函数,1*2*3*...*n
时间: 2023-09-05 12:09:59 浏览: 101
简单计算函数的编写过程...
以下是 Python 代码实现:
```python
def product(n):
result = 1
for i in range(1, n+1):
result *= i
return result
```
这个函数可以计算1到n之间所有整数的乘积。例如,`product(5)`将返回1*2*3*4*5,即120。
阅读全文