下面的 C++ 代码段可正常执行,删除 continue 不影响执行效果。( ) for (i = 0; i < 10; i++){ i += 1; continue; } cout << (i); 正确答案:正确(√)