Answers for "Write a Program to input year from user and check whether the give0n year is leap year or not using if else. java"

5

leap year program in java

public static boolean isLeapYear(int year) {
  if (year % 4 != 0) {
    return false;
  } else if (year % 400 == 0) {
    return true;
  } else if (year % 100 == 0) {
    return false;
  } else {
    return true;
  }
}
Posted by: Guest on June-30-2020

Code answers related to "Write a Program to input year from user and check whether the give0n year is leap year or not using if else. java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language