输出1900年到当前年份之间所有的闰年

public class Demo12 {
public static void main(String[] args) {

for (int year = 1900; year < 2022; year++) { //for循环从1900年到2021年
if (year % 4 == 0 || (year % 400 == 0 && year % 100 != 0)) { //如何判断这一年是否是闰年
System.out.println(year);
}


}
}
}
上一篇:2021-11-16


下一篇:8.6笔记