Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.text.SimpleDateFormat;

import java.util.Date;

public class Main {

    public static void main(String[] args) {
        Date date = new Date();

        SimpleDateFormat sdf = new SimpleDateFormat("yy");
        System.out.println("Current year in yy format : " + sdf.format(date));
    }
}
//Current year in yy format : 09