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