使用while循环打印输出1-100内所有的奇数,为空白处选上合适的选项( )
n = 0
while n < 100:
n +=1
________:
___________
else:
print(n,end='')
if n%2 ==1:
break
if n%2 ==0:
continue