Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.time.LocalDate;
import java.time.format.DateTimeFormatter;

public class Main {

    public static void main(String[] args) {
        DateTimeFormatter formatter = DateTimeFormatter.ofPattern("M/d/y");
        LocalDate maxCloseDate = LocalDate.parse("02/06/2015", formatter);
        System.out.println(maxCloseDate);
    }
}