該程序應該檢查輸入的年份是否爲閏年。但編譯時我已經遇到了錯誤。 檢查,如果它是一個閏年的計算公式如下:3條件中的一條if語句
If you can divide the year by 4 it's a leap year...
unless you can at the same time also divide it by 100, then it's not a leap year...
unless you can at the same time divide it by 400 then it's a leap year.
public class Schaltjahr {
public static void main (String[] args) {
double d;
String eingabe;
eingabe = JOptionPane.showInputDialog("Gib das Jahr ein "); //Type in the year
d = Double.parseDouble(eingabe);
if ((d % 4 == 0) & (d % 100 == 0) && (d % 400 = 0)) {
JOptionPane.showMessageDialog(null,"Es ist ein Schaltjahr"); //It is a leap year
} else {
if ((d % 4 == 0) & (d % 100 == 0))) {
JOptionPane.showMessageDialog(null, "Es ist kein Schaltjahr"); //It is not a leap year
}
} else {
if (d % 4 == 0) {
JOptionPane.showMessageDialog(null, "Es ist ein Schaltjahr"); // It is a leap year
}
}
}
}
在編譯時我收到此錯誤:
Schaltjahr.java:16: error: illegal start of expression
if ((d % 4 == 0) & (d % 100 == 0))) {
^
Schaltjahr.java:19: error: 'else' without 'if'
} else {
^
2 errors
因爲我希望你知道什麼'else'意思..程序應該如何決定使用哪'else'塊? – Tom
而不是寫'else {if(...){...}}',寫'else if(...){...}'。 – Gendarme
另外,當你指'&&'時,你在幾個地方使用'&'。 – Gene