用 Python 中 while 循环求 13!
时间: 2024-03-07 08:48:32 浏览: 70
猜数字(while循环)
可以使用 Python 中的 while 循环和变量来求 13!,具体实现方法如下:
```python
n = 13
result = 1
i = 1
while i <= n:
result *= i
i += 1
print(result)
```
代码中,首先定义变量 n 和 result,分别表示要求阶乘的数和阶乘的结果,将 result 初始化为 1,定义 i 为 1。然后使用 while 循环对 i 进行迭代,每次迭代将 i 乘到 result 中,并将 i 加 1,直到 i 大于 n 为止。最后输出 result 的结果,即为 13! 的值。
阅读全文