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) {

        System.out.println(toUUUUMM(LocalDate.now()));
    }

    public static String toUUUUMM(LocalDate localDate) {
        return localDate.format(DateTimeFormatter.ofPattern("uuuuMM"));
    }
}