#13959: AC_HAHA


terry90209@gmail.com (Mini)

學校 : 不指定學校
編號 : 78019
來源 : [219.71.215.231]
最後登入時間 :
2018-04-03 22:44:44
d072. 格瑞哥里的煩惱 (Case 版) -- 板橋高中教學題 | From: [110.28.168.153] | 發表日期 : 2018-05-20 16:23

public class D072{
public static void main(String[] args){
java.util.Scanner sc = new java.util.Scanner(System.in);
while(sc.hasNext()){
int round = sc.nextInt();
for(int i = 0; i < round; i++)
print(isLeapYear(sc.nextInt()), i + 1);
}
}

public static boolean isLeapYear(int y) {
return y % 400 == 0 ? true : (y % 4 == 0 && y % 100 != 0) ? true : false;
}

public static void print(boolean b, int i){
System.out.print("Case " + i + ": ");
if(b) System.out.println("a leap year");
else System.out.println("a normal year");
}
}

 
ZeroJudge Forum