samedi 17 mars 2018

Differences between one or two "if" statement

I would like to now what are (in theory) the differences between using

if (a == x && b == y)

and

if (a == x){
    if (b == y){

    }
}

Thank you

Aucun commentaire:

Enregistrer un commentaire