使用while和for循环输出1到100之间能被5整除的整数,每行输出3个
时间: 2023-05-29 22:03:25 浏览: 215
循环结构:02在100到200之间,既能被3整除,也能被5整除的整数的个数(for循环)(枚举法).py
使用while循环:
```python
i = 1
count = 0
while i <= 100:
if i % 5 == 0:
count += 1
print(i, end='\t')
if count % 3 == 0:
print()
i += 1
```
使用for循环:
```python
count = 0
for i in range(1, 101):
if i % 5 == 0:
count += 1
print(i, end='\t')
if count % 3 == 0:
print()
```
阅读全文