exercism/csharp/leap/Leap.cs

9 lines
169 B
C#
Raw Normal View History

2018-03-02 22:27:55 +00:00
using System;
public static class Leap
{
public static bool IsLeapYear(int year)
{
return year % 400 == 0 || (year % 4 == 0 && year % 100 != 0);
}
}