一JAVA笔试题

来源:互联网 发布:网络暴力新闻 编辑:程序博客网 时间:2024/04/25 08:17

题目:要求从键盘输入一数字,然后中文输出(要符合中文语法)
例:12434   输出 一万二千四百三十四

String num = "零壹贰叁肆伍陆柒捌玖";
    String dw = "圆拾佰仟万亿";
    String m = "30020.23";
    String mm[] = null;
    mm = m.split("//.");
    String money = mm[0];

    String result = num.charAt(Integer.parseInt("" + mm[1].charAt(0))) + "角" +
        num.charAt(Integer.parseInt("" + mm[1].charAt(1))) + "分";

    for (int i = 0; i < money.length(); i++) {
      String str = "";
      int n = Integer.parseInt(money.substring(money.length() - i - 1,
                                               money.length() - i));
      str = str + num.charAt(n);
      if (i == 0) {
        str = str + dw.charAt(i);
      }
      else if ( (i + 4) % 8 == 0) {
        str = str + dw.charAt(4);
      }
      else if (i % 8 == 0) {
        str = str + dw.charAt(5);
      }
      else {
        str = str + dw.charAt(i % 4);
      }
      result = str + result;
    }
    result = result.replaceAll("零([^圆]{1})", "零");
    result = result.replaceAll("零+", "零");
    result = result.replaceAll("零圆", "圆");
    System.out.println(result);

 

原创粉丝点击