Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.time.LocalDate;
import java.time.Period;

public class Main {
    public static void main(String[] args) {
        Period twoMonthsAndFiveDays = Period.ofMonths(2).plusDays(5);
        LocalDate sixthOfJanuary = LocalDate.of(2014, 1, 6);

        LocalDate eleventhOfMarch = sixthOfJanuary.plus(twoMonthsAndFiveDays);

        System.out.println(eleventhOfMarch);
    }
}