can you do this:
if( x > 0 && y > 0 && z == 0 )
Ive done this before:
if( x > 0 && y > 0 )
Is it possible to use multiple && in an IF statement?
can you do this:
if( x > 0 && y > 0 && z == 0 )
Ive done this before:
if( x > 0 && y > 0 )
Is it possible to use multiple && in an IF statement?
Yes, but why ask on a forum? Try it and see.