Development Java Tutorial

import java.util.Date;
public class MainClass {
  public static void main(String[] args) {
    Date now = new Date();
    System.out.printf("two digit minutes ranging from 00 to 59: %tH / %TH\n", now, now);
  }
}
//