A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  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. }
复制代码

3 个回复

倒序浏览
好吧每天都来看看
回复 使用道具 举报
赞一个!!!!!
回复 使用道具 举报
赞一个。。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马