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