Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.time.LocalDate;
import java.time.Month;

public class Main {
    public static void main(String[] args) {
        LocalDate dob = LocalDate.of(1971, Month.MAY, 16);
        System.out.printf("%1$tB %1$td,  %1$tY is %2$s's birth day. Let's go and celebrate.", dob, "Mike");
    }
}