check leap year using time in java

Solutions on MaxInterview for check leap year using time in java by the best coders in the world

showing results for - "check leap year using time in java"
Stefano
05 May 2020
1import java.util.Scanner;
2public class LeapYear {
3   public static void main(String[] args){
4      int year;
5      System.out.println("Enter an Year :: ");
6      Scanner sc = new Scanner(System.in);
7      year = sc.nextInt();
8
9      if (((year % 4 == 0) && (year % 100!= 0)) || (year%400 == 0))
10         System.out.println("Specified year is a leap year");
11      else
12         System.out.println("Specified year is not a leap year");
13   }
14}
Erik
17 Jan 2020
1import java.time.LocalDate;
2import java.time.LocalDateTime;
3import java.time.Year;
4import java.time.ZonedDateTime;
5 
6public class Main 
7{
8    public static void main(String[] args) 
9    {
10        // 1. ZonedDateTime
11 
12        ZonedDateTime currentTime = ZonedDateTime.now();
13 
14        if (currentTime.toLocalDate().isLeapYear()) 
15        {
16            System.out.println(currentTime.getYear() + " is a leap year");
17        } else {
18            System.out.println(currentTime.getYear() + " is NOT a leap year");
19        }
20 
21        // 2. LocalDateTime
22 
23        LocalDateTime localDateTime = LocalDateTime.now();
24 
25        if (localDateTime.toLocalDate().isLeapYear()) 
26        {
27            System.out.println(localDateTime.getYear() + " is a leap year");
28        } else {
29            System.out.println(localDateTime.getYear() + " is NOT a leap year");
30        }
31         
32        // 3. LocalDate
33 
34        LocalDate localDate = LocalDate.now();
35 
36        if (localDate.isLeapYear()) 
37        {
38            System.out.println(localDate.getYear() + " is a leap year");
39        } else {
40            System.out.println(localDate.getYear() + " is NOT a leap year");
41        }
42         
43        //4. Check current year is leap year or not
44 
45        if (Year.now().isLeap()) 
46        {
47            System.out.println("Current year is a leap year");
48        } else {
49            System.out.println("Current year is NOT a leap year");
50        }
51    }
52}
53
queries leading to this page
condition for leap year in javais leap year method javafind out if an year is leap javajava leap year calculatorleap year program in javawrite a program to check whether a given year is a leap year or not in javajava code for leap yearleap year program javahow to know if a year is a leap year javasymbol java statement this year is leap or notwrite a java program to check the leap yearcheck if year is leap year javajava leap yearswrite a java program to find if a year is leap year or not using for loopjava check leap yearjava program for leap yeargive the year and check if the leap year are not in javawrite a program to input year from user and check whether the give0n year is leap year or not using if else javahow to check if february and leap year javajava lep yearprint the leap year javahow to determine a leap year javaleap year concept in javaleap year javaleap year program in java test caseswrite a program to check leap year in javawrite a program in java to check if its a leap yearjava find if a year is leap or notcheck leap year or not in javaprogram to find leap year or not in javaleap year conditions in javaleap year formula javaleap year calculation if statement javajava code leap yearprogram to calculate leap year in javahow to check if leap year in javahow to find wheter a year is leap year or not in javahow to count leap year on javaleap year calculation in javajava program to check leap year 28nested if 29check if the year is a leap year or not in javadeterminnig leap year in javajava code to check leap yearjava program to check whether a given year is leap or not using scannerjava program to check whether the given year is leap year or notleap year java best wayleapyear program in javais leap year javaprogram to determine leap year in javawrite a java program to find whether the given year is leap year or not using conditionaljava program to check leap yearhow to find if a year is a leap year in javaleap year check in javabest to detect leap year javafinding leap year in javawrite a java program to find whether a year entered by the user is a leap year or notjava leap yearcheck if year is a leap year javacalculate leap year javaprogram to find leap year in javahow to check year is leap year or not in javahow to check whether the given year is leap or not in javajava program to find a leap year notleap year checker javajava how to calculate leap yearfind leap year javacheck leap year using time in javahow to check if leap year javaread year and check if the given year is a leap year javahow to find a leap year in javahow to calculate leap year in javajava check if year is leap methodhow to check leap year in javafind a leap year in javajava leapyearjava program to see if its leap year or notcheck if year is leap javahow to check whether the year is leap or not in javaleap year java methodleapyear javaleap year if statement javajava program to leap yearjava program to check whether a given year is leap or notleap year check using calander in java given the year input value 2c determine if that year was a leap year if a number is evenly divisible by 4 2c but not evenly divisible by 100 then it is a leap year coding in javaleap year java loopwap to generate a year using random class and check whether it is leap or not using user defined packagewhether a year is leap or not javagiven a year check if the year is leap year or not in javaleap year code javabest way to know if leap year javacheck if the year is a leap year or not in java gfgwhat is a leap year javajava leap year check logicjava test if it is leap yearjava check if leap yearhow to determine if a year is a leap year in javaleap year write a method in javaleap year or not in javaleapyear in javajava code to check whether a year is a leap year or notjava method to find year is leap or notfind leap year or not in javafind leap year in javahow to know a leap year javacheck if a year is a leap year javasee if is a leap year javacheck leap year javacheck leap year in java stack overflowleap year program injavafind if the year is leap or not in javajava check if year is leapcheck to see if a number is a leapyear javahow to calculate if a year is a leap year javajava if year is leapleap year calculator javahow to find leap year in javaleap year program in java with explanationfollowing year is leap year javacheck for leap year in javajava exception to find leap yearleap year code in javaprogram to find leap year javaleap year if statementleap year in javaa leap year java programleap year logic in java to input 2020java leap year methodjava program to know if the year is a leap yearleap year or not javajava get leap yearjava check for leap yearjava leap year programwrite a program to find leap year in javacheck leap year in javajava date get if year is leapleap year programming in javafind leap year from date in javaleap year calendar javajava calendar know if year is leapwhen does a leap year start javajava method to calculate whether a leap year or notis leap year code javaleap year logic javaleap year condition in javacode for leap year in javajava program to find if given year is leap yearfind if the year is leap year in javajava program to check leap year or notleap year java programwap to generate a year using random class and check whether it is leap or not using user defined package leap in javaleap year checking in javaleap year java program input from keyboardfunction year leap javaleap year meaning in javacode of leap year in javajava leap year codeleap year logic in javajava leap year expressionleap year program in java using methodcheck leap year using time in java