Avatar of jazzIIIlove
jazzIIIlove
Flag for Sweden

asked on 

for..for.. if .. continue

Hi;

I have the following pseudocode:
for {
   for {
     for {
       if(condition) continue;
       some_variable = some_expression   

Open in new window


so if the condition is true; it will continue but continue where? next line? Also if it's false, it will continue to the next line?

Regards.
JavaC#

Avatar of undefined
Last Comment
CPColin

8/22/2022 - Mon