Java tutorial
//package com.java2s; public class Main { private static String formateNumber(int time) { return String.format("%02d", time); } }