isLeapYear function

bool isLeapYear(
  1. int year
)

A method to check whether the passed year is leap year or not.

Implementation

bool isLeapYear(int year) {
  if ((year % 4 == 0 && year % 100 != 0) || (year % 400 == 0)) {
    return true;
  } else {
    return false;
  }
}