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