Si j'utilise une break
, cela ne brisera que la boucle interne et je dois utiliser un indicateur pour briser la boucle externe. Mais s'il y a beaucoup de boucles imbriquées, le code n'aura pas l'air bien.
Existe-t-il un autre moyen de briser toutes les boucles? (Veuillez ne pas utiliser goto stmt
.)
for(int i = 0; i < 1000; i++) {
for(int j = 0; j < 1000; j++) {
if(condition) {
// both of the loops need to break and control will go to stmt2
}
}
}
stmt2