I have two for loops nested like this:
for(...) { for(...) { } }
I know that there is a break statement. But I am con
break
If a break is executed from within a set of nested loops, only the innermost loop in which the break is executed is terminated. (Just like standard C)