码迷,mamicode.com
首页 > 其他好文 > 详细

字符窜转数字

时间:2019-03-29 14:38:22      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:system   ret   div   class   ++   pre   stat   +=   res   

    public static String toCc(String str){
        String[] s1 = { "零", "一", "二", "三", "四", "五", "六", "七", "八", "九" };
        String[] s2 = { "十", "百", "千", "万", "十", "百", "千", "亿", "十", "百", "千" };
        String result = "";
        int n = str.length();
        for (int i = 0; i < n; i++) {
            int num = str.charAt(i) - ‘0‘;
            if (i != n - 1 && num != 0) {
                result += s1[num] + s2[n - 2 - i];
            } else {
                result += s1[num];
            }
        }
        return result;
    }

System.out.println(toCc("123123100"));
        一亿二千三百一十二万三千一百零零

字符窜转数字

标签:system   ret   div   class   ++   pre   stat   +=   res   

原文地址:https://www.cnblogs.com/xiaowoniulx/p/10620990.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!