我正在准备一些代码:
for(int a = 1; a <= 100; a++) //loop a (main loop)
{
for(int b = 1000; b <= 2000; b++) //loop b
{
if(b == 1555)
break;
}
for(int c = 2001; c <= 3000; c++) //loop c
{
.
.
.
}
}
int a
我想通过在 b 循环(循环变量)中使用break;
语句来打破主循环(循环变量int b
)。
我该怎么做?