Checking leap year in Java 8
package com.shxt.demo02; import java.time.LocalDate; public class Demo14 { public static void main(String[] args) { LocalDate today = LocalDate.now(); if(today.isLeapYear()){ System.out.println("This year is Leap year"); }else { System.out.println("2018 is not a Leap year"); } } }
The above is the detailed content of How to check leap year in Java 8?. For more information, please follow other related articles on the PHP Chinese website!