You may not use both break and continue statements within the same set of nested loops.?
True or False?
True or False?
husoski
Favorite Answer
You can, and you can use both in the same loop, but they will only apply to the innermost loop. So the "nested" part is a red herring here.
There is no way inside an inner loop to get either break or continue to apply to any surrounding loop.
bocephusmcguire
Sure you can.
Anonymous
false?