第23006题
判断给定C++代码执行后是否输出0
int i;
for (i = 0; i < 10; i++){
    continue;
    break;
}
cout << i;
正确
错误