fork download
  1. import java.time.Month;
  2.  
  3. public class Main {
  4. public static void main(String[] args) {
  5. int monthNumero = 6;
  6. String monthName = Month.of(monthNumero).toString();
  7. System.out.println(monthName);
  8. }
  9. }
Success #stdin #stdout 0.08s 50900KB
stdin
Standard input is empty
stdout
JUNE