分别使用for...range()循环和while循环写两个函数,实现5的阶乘 (5!=5*4*3*2*1,注意0!=1)用Python代码
时间: 2024-05-12 15:20:28 浏览: 111
使用for...range()循环实现5的阶乘:
```python
def factorial_for(num):
result = 1
for i in range(1, num+1):
result *= i
return result
print(factorial_for(5)) # 输出120
```
使用while循环实现5的阶乘:
```python
def factorial_while(num):
result = 1
i = 1
while i <= num:
result *= i
i += 1
return result
print(factorial_while(5)) # 输出120
```
相关问题
分别使用for...range()循环和while循环写两个函数,实现5的阶乘 (5!=5*4*3*2*1,注意0!=1)
没问题,我可以回答这个问题。以下分别使用for循环和while循环的方式实现了5的阶乘:
使用for循环实现:
```python
def factorial_for(n):
result = 1
for i in range(1, n+1):
result *= i
return result
```
使用while循环实现:
```python
def factorial_while(n):
result = 1
while n > 0:
result *= n
n -= 1
return result
```
两个函数的调用方式都是一样的:
```
print(factorial_for(5)) # 输出120
print(factorial_while(5)) # 输出120
```
2 分别使用for...range()循环和while循环写两个函数,实现5的阶乘 (5!=5*4*3*2*1,注意0!=1)
使用for...range()循环实现5的阶乘:
```python
def factorial_with_for_loop(n):
result = 1
for i in range(1, n+1):
result *= i
return result
print(factorial_with_for_loop(5)) # 输出120
```
使用while循环实现5的阶乘:
```python
def factorial_with_while_loop(n):
result = 1
i = 1
while i <= n:
result *= i
i += 1
return result
print(factorial_with_while_loop(5)) # 输出120
```
阅读全文