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

人民币

时间:2015-01-07 21:53:46      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:

人民币转换

 1 package t0107;
 2 
 3 public class Money {
 4 
 5     private static final char[] data = new char[]{
 6         ‘零‘,‘壹‘,‘贰‘,‘叁‘,‘肆‘,‘伍‘,‘陆‘,‘柒‘,‘捌‘,‘玖‘,
 7     };
 8     private static char[] units = new char[]{
 9         ‘元‘,‘拾‘,‘佰‘,‘仟‘,‘万‘,‘拾‘,‘佰‘,‘仟‘,‘亿‘,
10     };
11     /**
12      * @param args
13      */
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 }

 

人民币

标签:

原文地址:http://www.cnblogs.com/cfb513142804/p/4209415.html

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