In Java, what is the direct method of getting out of a WHILE loop which is inside a WHILE loop and which is inside a FOR loop? The structure should look something like this:
For{
.
.
   While{
   .
   .
   .
     While{
     .
     .
     <Stuck here. Want to break Free of all Loops>;
     }
   }
}
 
     
     
    