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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 默默丶 高级黑马   /  2014-9-26 15:53  /  826 人查看  /  3 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

  1. import java.util.Scanner;
  2. public class Demo2 {
  3.         public static void main(String[] args)throws Exception{
  4.                 Scanner sn =new Scanner(System.in);
  5.                 String[] str = {"零","一","二","三","四","五","六","七","八","九"};
  6.                 StringBuffer sb1 = new StringBuffer();
  7.                 StringBuffer sb2 = new StringBuffer();
  8.                 sb1.append(sn.nextInt());
  9.                 for(int i =0;i<sb1.length();i++){
  10.                 int a = Integer.parseInt(sb1.substring(i, i+1));
  11.                 sb2.append(str[a]);               
  12.         }
  13.                 System.out.println(sb2.toString());
  14.                
  15.                
  16.         }
  17. }
复制代码

3 个回复

正序浏览
可以啊。。。
回复 使用道具 举报
挺6啊小伙
回复 使用道具 举报
谢谢楼主的分享哦
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马