下面C++代码执行后因为有break,将输出0。( ) int i; for (i = 0; i < 10; i++){ continue; break; } cout << i; 正确答案:错误(×)