我的程式碼一直錯誤
可是我用我電腦執行都是對的阿
哭哭
以下是我的程式碼
import java.io.*;
public class Years{
public static void main(String [] argv)
throws IOException{
BufferedReader br = new
BufferedReader (new InputStreamReader (System.in));
int y;
System.out.println("年份 :");
String str = br.readLine();
y = Integer.parseInt(str);
if ((y%4==0)&(y%100!=0)){
System.out.println("閏年");
}
else if (y%400==0){
System.out.println("閏年");
}
else{
System.out.println("平年");
}
}
}