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