在下面的C++代码中,因为 continue 将被执行,因此不会有输出。( )
int i; for (i = 1; i < 10; i++) if (i % 2 == 0) continue; if(i == 10) cout << "END"; }