lundi 10 août 2015

Understanding if conditions - Java

What would the if condition be using this example.

A - if true, B or C must also be true; Pass
    if false, B and C do not matter; Fail
B - if true, A must also be true and C can be false or true
    if false, A must be true and C must be true; Pass, else Fail
C - if true, A must also be true and B can be false or true
    if false, A must be true and B must be true; Pass, else Fail

I am not sure how to set this up. Here is what I think the if may look like:

//Not sure if the "or" needs to be double or single bar.
if(A && B | C){
   //pass    
}else{//fail}

Aucun commentaire:

Enregistrer un commentaire