isLeapYear static method
Implementation
static bool isLeapYear(int year) {
bool leapYear = false;
bool leap = ((year % 100 == 0) && (year % 400 != 0));
if (leap == true) {
return false;
} else if (year % 4 == 0) {
return true;
}
return leapYear;
}