using System;
public class GetTheNext15LeapYears_CSharp
{
public static bool isLearYear(int year) {
return year % 4 == 0 && (year % 100 != 0 || year % 400 == 0);
}
public static void Main(string[] args)
{
int year = 2021, count = 0;
while (count < 15) {
if (isLearYear(year)) {
count++;
Console.WriteLine(year);
}
year++;
}
}
}
/*
run:
2024
2028
2032
2036
2040
2044
2048
2052
2056
2060
2064
2068
2072
2076
2080
*/