编写函数,计算20x19x18x....x3的结果
时间: 2023-06-24 13:08:05 浏览: 305
Lcd.c.zip_20x4_20x4 lcd_LCD.C_The Program
可以使用循环来计算这个乘积,具体实现如下:
```python
def calculate_product():
result = 20
for i in range(19, 2, -1):
result *= i
return result
```
在函数中,我们首先初始化 `result` 为 20,然后从 19 循环到 3,每次将当前的数乘到 `result` 上即可。最后返回 `result` 的值即为所求的结果。
使用上述函数可以计算出 20x19x18x....x3 的结果:
```python
print(calculate_product()) # 输出 121645100408832000
```
阅读全文