(一年的天数)使用下面的方法头编写一个方法,返回一年的天数
前情提要
public static int numberOfDaysInAYear(int year)
编写一个测试程序,显示从2000年到2020年间每年的天数。
代码实现
public class java6_16 {
public static void main(String[] args)
{
System.out.println("显示2000到2020年间每年的天数");
for(int temp=2000;temp<=2020;temp++)
{
System.out.println(temp+"年的天数:"+numberOfDaysInAYear(temp)+"天");
}
}
public static int numberOfDaysInAYear(int year){
int days;
if(year%400==0)
days=366; //闰年
else
{
if(year%4==0&&year%100!=0)
days=366; //闰年
else
days=365; //平年
}
return days;
}
}
输出