Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.text.CharacterIterator;
import java.text.Format;
import java.text.SimpleDateFormat;
import java.util.Date;

public class Main {
    public static void main(String[] argv) throws Exception {

        Format formatter = new SimpleDateFormat("MMM");
        CharacterIterator s = formatter.formatToCharacterIterator(new Date());
        System.out.println(s.last());
    }
}