用python中的while循环计算n的阶乘
时间: 2024-05-15 19:18:49 浏览: 66
python计算n的阶乘的方法代码
5星 · 资源好评率100%
Sure,这个问题属于计算数学题,我可以为您解答。以下是代码:
```python
n = int(input("请输入一个整数n:"))
result = 1
i = 1
while i <= n:
result *= i
i += 1
print("%d的阶乘是:%d" % (n, result))
```
您可以输入任意整数n,程序会计算出n的阶乘并输出。
阅读全文