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