运行下面程序的结果是( )。
a = 2 while a < 6: a += 1 if a == 4: continue print(a, end = ' ')
2 3 4 5 6
3 4 5 6
4 5 6
3 5 6