int i; for (i = 0; i < 10; i++){ continue; cout << i << "#"; break; } if (i >= 10) cout << "END";
正确
错误