Java tutorial
//package com.java2s; public class Main { public static int[] getYearMonthFromEraMonthIndex(int eraMonthIndex) { int[] result = new int[2]; result[0] = (int) Math.floor(eraMonthIndex / 12); // year result[1] = (eraMonthIndex % 12); // month return result; } }