python用while循环100以内所有的偶数
时间: 2023-05-21 15:04:27 浏览: 63
以下是使用 Python 编写的程序,用 while 循环输出 100 以内的所有偶数:
```
num = 0
while num <= 100:
if(num % 2 == 0):
print(num)
num += 1
```
希望你能够满意地解决您的问题。
相关问题
python利用while循环输出100以内偶数
可以使用以下代码实现:
```
num =
while num <= 100:
if num % 2 == :
print(num)
num += 1
```
这个程序会从开始循环,每次判断当前数是否为偶数,如果是就输出,然后继续循环。当循环到100时,程序结束。
python使用while输出100以内的偶数
以下是使用 Python while 循环输出 100 以内的偶数的代码:
```
num = 0
while num <= 100:
if num % 2 == 0:
print(num)
num += 1
```
这段代码会输出 0 到 100 之间的所有偶数。
阅读全文