java 如果一个人出生于1970年那么他这一辈子能有几个闰年以70岁为寿命长度通过Java程序计算得到结果
以下是Java程序,可以计算出一个人出生于1970年,这一生中有多少个闰年:
public class LeapYearCalculator {
public static void main(String[] args) {
int birthYear = 1970;
int lifespan = 70;
int leapYears = 0;
for (int year = birthYear; year < birthYear + lifespan; year++) {
if (year % 4 == 0 && (year % 100 != 0 || year % 400 == 0)) {
leapYears++;
}
}
System.out.println("This person has " + leapYears + " leap years in their life.");
}
}
输出:
This person has 17 leap years in their life.
因此,一个人出生于1970年,这一生中有17个闰年
原文地址: https://www.cveoy.top/t/topic/cHUf 著作权归作者所有。请勿转载和采集!