它給了我下面的錯誤:運營商==未定義的參數類型
布爾,INT在令牌 語法錯誤,刪除這些令牌java如果嵌套循環
package javaproject;
public class NestedIFandIFandElse {
public static void main(String[] args) {
int vanus = 50;
if (vanus == 40) {
System.out.println("first if ");
} else {
System.out.print("first else");
if (vanus == 50 ∣∣ vanus == 20) {
System.out.println("second if");
} else {
System.out.println("second else");
}
}
}
}
你的'||'很奇怪。嘗試用'||' –
修復格式。什麼是「||」,它不是「||」? – clcto
看起來像''\ u2225'',平行線的數學符號。 – ajb