执行下列C++代码,输出结果为?( )
for (int i = 1; i <= 5; i++){ if (i % 2 == 0){ continue; } cout << i << " "; }
1
2 4
1 3 5
1 2 3 4