黑马程序员技术交流社区

标题: 从键盘接受一个数字,列出该数字的中文标示格式。 [打印本页]

作者: 小马范    时间: 2014-12-9 23:04
标题: 从键盘接受一个数字,列出该数字的中文标示格式。
  1. public class Test01 {

  2.         public static void main(String[] args) throws IOException {
  3.                 System.out.println("请输入一串正整数数字");
  4.                 intToString();
  5.         }

  6.         public static void intToString() throws IOException {
  7.                 // 键盘录入
  8.                 BufferedReader bufr = new BufferedReader(new InputStreamReader(
  9.                                 System.in));
  10.                 String num = bufr.readLine();
  11.                 String[] str = { "零", "一", "二", "三", "四", "五", "六", "七", "八", "九" };
  12.                 StringBuilder sb = new StringBuilder();
  13.                 // 把键盘读取到的数据加到sb对象中
  14.                 sb.append(num);
  15.                 for (int i = 0; i < sb.length(); i++) {
  16.                         // sb对象内的字符串对象装换成整数对象
  17.                         int j = Integer.parseInt(sb.substring(i, i + 1));
  18.                         System.out.print(str[j]);
  19.                 }
  20.         }
  21. }
复制代码

作者: 禾青青    时间: 2014-12-10 22:28
好吧每天都来看看
作者: lijingbo    时间: 2014-12-21 10:15
赞一个!!!!!
作者: 斷灬dian    时间: 2014-12-31 11:22
赞一个。。




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2