打印0到100内的奇数没反应
i = 0while i:
if (i%2 == 1) and (0 <= i <= 100):
print(i,end=' ')
i += 1
while就不会被执行 i = 1
while i:
if (i%2 == 1) and (0 <= i <= 100):
print(i,end=' ')
i += 1
改成1就好了 巴巴鲁 发表于 2020-10-24 21:17
while就不会被执行
明白了,谢谢{:5_109:} 巴巴鲁 发表于 2020-10-24 21:17
while就不会被执行
嗯嗯,谢谢{:5_109:}
页:
[1]