Let\'s say I have this:
while(a){ while(b){ if(b == 10) break; } }
Question: Will the break statement take m
The java break statement won't take you out of multiple nested loops.