3、编写函数,计算20×19×18×...×3的结果。
时间: 2024-05-10 19:13:51 浏览: 53
2023年3月计算机二级C语言真题及答案.docx
这个问题属于数学问题,可以用循环来解决,代码如下:
```
def multiplication(n):
result = 1
for i in range(3, n + 1):
result *= i
return result * 20 * 19 * 18
print(multiplication(20))
```
输出结果为116280717056000,即20×19×18×...×3的结果。
阅读全文