黑马程序员技术交流社区
标题:
从键盘接受一个数字,列出该数字的中文标示格式。
[打印本页]
作者:
小马范
时间:
2014-12-9 23:04
标题:
从键盘接受一个数字,列出该数字的中文标示格式。
public class Test01 {
public static void main(String[] args) throws IOException {
System.out.println("请输入一串正整数数字");
intToString();
}
public static void intToString() throws IOException {
// 键盘录入
BufferedReader bufr = new BufferedReader(new InputStreamReader(
System.in));
String num = bufr.readLine();
String[] str = { "零", "一", "二", "三", "四", "五", "六", "七", "八", "九" };
StringBuilder sb = new StringBuilder();
// 把键盘读取到的数据加到sb对象中
sb.append(num);
for (int i = 0; i < sb.length(); i++) {
// sb对象内的字符串对象装换成整数对象
int j = Integer.parseInt(sb.substring(i, i + 1));
System.out.print(str[j]);
}
}
}
复制代码
作者:
禾青青
时间:
2014-12-10 22:28
好吧每天都来看看
作者:
lijingbo
时间:
2014-12-21 10:15
赞一个!!!!!
作者:
斷灬dian
时间:
2014-12-31 11:22
赞一个。。
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2