Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.time.Period;

public class Main {
    public static void main(String[] args) {

        Period twoMonthsAndFiveDays = Period.ofMonths(2).plusDays(5);

        System.out.println(twoMonthsAndFiveDays);
    }
}