class EBH023 {
static
String m1(boolean b){
return b?"T":"F";
}
public static void main(String [] args) {
boolean b1 = false?false:true?false:true?false:true;
System.out.prinln(b1);
}
}
[/CODE]
When I work on that b1
B1 = false?false:true?false:true?false:true;
b1 = true ?false:true?false:true;
b1 = false ?false:true;
b1 = true;
but this b1 output is false ?How?
Please help me.