A36589. 写一个程序,输出 0-100 所有的奇数。
填空题
较易
知识点
题目描述
写一个程序,输出 0-100 所有的奇数。
参考答案
for i in range(100):
if i % 2 != 0:
print(i)
上一题
下一题