在下面C++代码中,删除break语句对程序执行结果没有影响。 ( )
int i; for (i = 0; i < 10; i++){ continue; cout << i << "#"; break; } if (i >= 10) cout << "END";