錯誤顯示此行不好操作類型爲二進制運算符 「&」 的Java
if ((a[0] & 1 == 0) && (a[1] & 1== 0) && (a[2] & 1== 0)){
這是整個代碼:
public class Ex4 {
public static void main(String[] args) {
int [] a = new int [3];
if(args.length == 3)
{
try{
for(int i = 0; i < args.length; i++)
{
a[i] = Integer.parseInt(args[i]);
}
}
catch(NumberFormatException e){
System.out.println("Wrong Argument");
}
if ((a[0] & 1 == 0) && (a[1] & 1== 0) && (a[2] & 1== 0)){
System.out.println("yes");
}
else {
System.out.println("no");
}
}
else{
System.out.println("Error");
}
}
}
我已經固定的代碼:
if ((a[0] & 1) == 0 && (a[1] & 1) == 0 && (a[2] & 1) == 0){
括號中的問題,未來任何人都會更新。
什麼意思'非快捷方式邏輯和? – Colas