Java MonthDay get Christmas days in next five years

Description

Java MonthDay get Christmas days in next five years

import java.time.LocalDate;
import java.time.Month;
import java.time.MonthDay;
import java.time.Year;
import java.time.format.TextStyle;
import java.util.Locale;

public class Main {
  public static void main(String[] args) {
    MonthDay dec25 = MonthDay.of(Month.DECEMBER, 25);
    Year year = Year.now();

    // Construct and print Christmas days in next five years
    for (int i = 1; i <= 5; i++) {
      LocalDate ld = year.plusYears(i).atMonthDay(dec25);
      int yr = ld.getYear();
      String weekDay = ld.getDayOfWeek().getDisplayName(TextStyle.FULL,Locale.getDefault());
      System.out.format("Christmas in %d is on %s.%n", yr, weekDay);
    }/*from  w ww . j av  a  2  s. c o  m*/
  }
}



PreviousNext

Related