下列不会产生死循环的程序是?( )
i=1
while True:
i+=1
if i%2==0:
continue
print(i)
i=0
if i==100:
break
while i==1: