Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.time.LocalDate;

public class Main {
    public static void main(String[] argv) {
        System.out.println(getMonthName(2));
    }

    public static String getMonthName(Integer month) {
        LocalDate localDate = LocalDate.of(0, month, 0);
        return localDate.getMonth().name();
    }
}