阅读下面代码,正确的输出是( )
for i in range(4): if i == 2: continue for j in range(4): if j ==2: break print(i,j)
0 0
0 1
0 2
1 0
1 1
3 0
3 1
2 0
2 1