package ms.utils; import java.text.DecimalFormat; public class EnglishDecimalFormat { private static final String[] majorNames = { "", " Thousand", " Million", " Billion", " Trillion", " Quadrillion", " Quintillion" }; private static final String[] tensNames = { "", " Ten", " Twenty", " Thirty", " Fourty", " Fifty", " Sixty", " Seventy", " Eighty", " Ninety" }; private static final String[] numNames = { "", " One", " Two", " Three", " Four", " Five", " Six", " Seven", " Eight", " Nine", ...