题目:请输出1990-2020年间的所有闰年。
/**
* 这是一个判断闰年的程序
* 程序输出1990-2020年之间的所有闰年
*/
package Lily_Java_commons;
/**
* @author LilyLee
* @date 2017年4月23日
* @time 下午9:07:56
* @Version 1.0
* @email lilylee_1213@foxmail.com
*
*/
public class LeapYear {
static int Leapyear(int year){
if((0==year%400)||(year%100!=0)&&(0==year%4)){
return 1;
}else
return 0;
}
public static void main(String[] args) {
// TODO Auto-generated method stub
int count=0;
for(int i=1990;i<2020;i++){
if(Leapyear(i)==1){
System.out.print(i+" ");
count++;
if(count%4==0)
System.out.println("\n");
}
}
}
}