How to get the next 15 leap years in C#

1 Answer

0 votes
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
   
*/

 



answered Oct 18, 2024 by avibootz

Related questions

1 answer 86 views
86 views asked Jan 4, 2025 by avibootz
1 answer 89 views
89 views asked Jan 4, 2025 by avibootz
1 answer 102 views
102 views asked Oct 18, 2024 by avibootz
1 answer 591 views
591 views asked Mar 26, 2021 by avibootz
1 answer 157 views
157 views asked Mar 26, 2021 by avibootz
2 answers 190 views
190 views asked Mar 26, 2021 by avibootz
...