为什么错的
if(a&&b){
System.out.println("通过");
}else {
System.out.println("未通过");
};
if(a||d){
System.out.println("通过");
}else {
System.out.println("未通过");
};
if(!a==ture){
System.out.pringtln("通过");
}else{
System.out.println("未通过");
};
if(c^d){
System.out.println("通过")
}else{
System.out.println("未通过");
};