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