python写输入整数n(n≥0),用for循环求n的阶乘
时间: 2023-03-30 15:04:33 浏览: 370
编写程序,输入整数 n,计算并输出 n 的阶乘
可以回答这个问题。以下是代码:
```python
n = int(input("请输入一个整数n:"))
result = 1
for i in range(1, n+1):
result *= i
print("%d的阶乘是:%d" % (n, result))
```
阅读全文
编写程序,输入整数 n,计算并输出 n 的阶乘