for(int i = 0; i < 1000; i++) {
for(int j = 0; j < 1000; i++) {
if(condition) {
// both the loop need to be break and control will go to stmt2
}
}
}
stmt2
If I use break stmt, it will only break inner loop and I need to use some flag to break outer loop. But if there are many nested loop, the code will not look good.
Is there any other way to break all the loop? (please don't use goto stmt)


