首页 > 代码库 > 人民币
人民币
人民币转换
1 package t0107; 2 3 public class Money { 4 5 private static final char[] data = http://www.mamicode.com/new char[]{ 6 ‘零‘,‘壹‘,‘贰‘,‘叁‘,‘肆‘,‘伍‘,‘陆‘,‘柒‘,‘捌‘,‘玖‘, 7 }; 8 private static char[] units = new char[]{ 9 ‘元‘,‘拾‘,‘佰‘,‘仟‘,‘万‘,‘拾‘,‘佰‘,‘仟‘,‘亿‘,10 };11 /**12 * @param args13 */14 public static void main(String[] args) {15 System.out.println( convert(12123313) );16 17 }18 19 public static String convert(int money){20 StringBuffer sbf = new StringBuffer();21 int unit = 0;22 while(money != 0){23 24 sbf.insert(0, units[unit++]);25 int number = money%10;26 sbf.insert(0, data[number]);27 money /= 10;28 }29 return sbf.toString();30 }31 32 }
人民币
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。