分别用for循环和while循环输出如下图所示的图形: ***** ***** ***** ***** *****
时间: 2023-09-16 10:05:06 浏览: 270
### 回答1:
用for循环输出:
for i in range(5):
for j in range(5):
print('*', end=' ')
print()
用while循环输出:
i = 0
while i < 5:
j = 0
while j < 5:
print('*', end=' ')
j += 1
print()
i += 1
### 回答2:
使用 for 循环的代码如下:
```
for i in range(5):
for j in range(5):
print("*", end=" ")
print()
```
使用 while 循环的代码如下:
```
i = 0
while i < 5:
j = 0
while j < 5:
print("*", end=" ")
j += 1
print()
i += 1
```
无论是使用 for 循环还是 while 循环,都可以实现输出如下图所示的图形:
```
* * * * *
* * * * *
* * * * *
* * * * *
* * * * *
```
### 回答3:
使用for循环实现输出如下图所示的图形:
```
for i in range(5):
print("***** ", end="")
```
使用while循环实现输出如下图所示的图形:
```
count = 0
while count < 5:
print("***** ", end="")
count += 1
```
阅读全文