我想用java中的程序打印word中的数字。有谁能够帮我。 如假设用户给123然后程序将打印“仅一二三”。
Class Test {
}
答案 0 :(得分:0)
基本上你需要将String转换为整数 How to convert a String to an int in Java? 然后逐个查看数字How to get the separate digits of an int number? 并在每个数字上创建一个开关,交换机将数字字符串添加到字符串
String final ="";
switch(num){
case'1': final = final+"one";break;
.
.
.
.
etc