第19788题 判断题
判断下面带continue和break的C++代码执行后是否输出0
int i;
for (i = 0; i < 10; i++){
    continue;
    break;
}
cout << i;
A

正确

B

错误

程序运行统计
暂无判题统计