vendredi 25 août 2017

Nested for/if loop and statement [on hold]

if (first statement) 
{
    for (first loop) 
    {
        if (second statement) 
        {
            for (second loop) 
            {       
                if (third statement) 
                {
                    Do something;
                }
            } 
        }
    }
}

The question is, if the third statement is false , it is going to the first loop or second ? c#

Aucun commentaire:

Enregistrer un commentaire