下列哪个程序不会陷入死循环?( )
false='false' while false: print('该程序已经进入死循环!')
while 0: print('该程序已经进入死循环!')
while 1<2: print('该程序已经进入死循环!')
while 1: print('该程序已经进入死循环!')