exercism/csharp/leap/Leap.cs
Anthony C 0aedeb08a0 Kotlin - WIP Meetup
C# - Hello World and Leap Year Complete
2017-08-12 00:22:44 -04:00

7 lines
No EOL
179 B
C#

using System;
public static class Leap {
public static bool IsLeapYear(int year) {
return (((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0));
}
}