You may not use both break and continue statements within the same set of nested loops.?

True or False?

husoski2019-03-20T19:17:48Z

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.

bocephusmcguire2019-03-20T18:51:00Z

Sure you can.

Anonymous2019-03-20T16:38:15Z

false?