
There are many ways you can check if the inputted year is a leap year or not using Java, but before we get started, let's understand what is a leap year.
What is a Leap Year?
A leap year is that year of the Gregorian calendar when we have an additional day in the year. It is also called as intercalary year or bissextile year. A Leap year will have 366 days instead of 365, this extra day is added to February - 29 days instead of 28.
Logic of identifying a Leap Year
A Year can be considered a leap year if the year is divisible by 4, also if that Year is divisible by 100 it should be also divisible by 400 to be a Leap year.
Some Examples to check Leap Years
Examples:
2019: 2019 is not divisible by 4, hence 2019 is not a leap year.
2020: 2020/4 = 0, 2020/100 is not true: So its a leap year.
1000: 2000/4 = 0, 1000/100=0 is not true, but 1000/400 is not 0, so its not a Leap year.
Java Code Example for Leap Year
Example 1:
package org.code2care;
/**
* Leap year program Java
*
* This Class demonstrates if a
* year is a leap year or not
*
* Author: Code2care
*/
public class LeapYearJava {
public static void main(String[] args) {
int year = 1000;
if(isLeapYear(year)) {
System.out.println("Year " + year + " is a Leap Year!");
} else {
System.out.println("Year " + year + " is a not Leap Year!");
}
}
/**
* Leap Year Logic:
*
* Logic:
* if the year % 4 == 0
* if yes
* Check if the year % 100 == 0
* if yes
* 3) Check if year % 400 == 0
* if no
* Not a Leap Year
* if no
* Its a Leap Year
* if no
* Its not a Leap Year
*
* @param year int value that represents a year
* @return true is year is a leap year, else false
*/
public static boolean isLeapYear(int year) {
if (year % 4 == 0) {
if (year % 100 == 0) {
if (year % 400 == 0) {
return true;
} else {
return false;
}
} else {
return true;
}
} else {
return false;
}
}
}
Example 2:
This logic is much clearer to understand,
/**
* Pseudo code for java leap year program
*
* If year % 4 ! = 0
* not leap year
* else if year % 400 == 0
* leap year
* else if year % 100 == 0
* not leap year
* else
* leap year
*
* @param year int value that represents a year
* @return true is year is a leap year, else false
*/
public static boolean isLeapYearLogic2(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;
}
}
Leap year code in Java is often tested in Schools and Colleges! Hope you find it helpful!
- CRUD operations in Spring Boot + JDBC
- Java Check Leap Year - Programs with Code Examples
- [fix] Java JDBC ConnectException: Connection refused
- How to add hours and minutes to Java Instant
- Java Program: Random Number Generator
- Java: The value of the local variable string is not used
- How to get list of all Java versions installed on macOS
- Java SE JDBC with Prepared Statement Parameterized Select Example
- Java + Spring JDBC Template + Gradle Example
- Convert String to LocalDate in Java
- Remove Trailing zeros BigDecimal Java
- Java 8 Predicate Functional Interface isEqual() Method Example
- How to Hardcode Date in Java with Examples
- Java 8: Predicate negate() default Function Example
- Java: Collect Stream as ArrayList or LinkedList
- The Motivation Behind Generics in Java Programming
- How to Add/Subtract Days to the Current Date in Java
- Error: Can not find the tag library descriptor for
- Setting up JUnit 5 dependency with Maven Example
- Run Java Code Every Second
- How to create a tar.gz file using Java
- [Fix] java: integer number too large compilation error
- Java 8: Find the Max value in a List
- Your JBoss Application Server 7 is running However you have not yet added any users to be able to access the admin console
- Convert Java Array to ArrayList Code Example
- How to install micro text editor using brew on macOS - MacOS
- Minecraft Java Edition - Java
- How to make Android EditText not editable - Android
- Convert LocalDateTime to java.util.Calendar Object in Java - Java
- How to Split a String using delimiter in Python - Python
- trurl: A new command-line tool for URL parsing and manipulation by cURL Developer - cURL
- [Fix] Steam Friends Network Unreachable Error - HowTos
- Online Morse Code To Audio Converter Tool [Free] - Tools