java语句输出0-9_怎样在JAVA编程中输入一个数字输出这个数字的拼音? 例如:9 jiu 19 shi jiu 10...

展开全部

import java.util.Scanner;

public class NumToCh {

private static String[] Ch={"ling","yi","er","san","si","wu","liu","qi","ba","jiu","shi"};

public static void main(String[] args) {

Scanner sc = new Scanner(System.in);

System.out.println("请输入e69da5e6ba9062616964757a686964616f31333363363439:");

int i = sc.nextInt();

if(i/10 > 0){

int h = i/10;

int l = i%10;

if(i%10 != 0){

System.out.println(Ch[h]+" "+Ch[10]+" "+Ch[l]);

}else {

System.out.println(Ch[h]+" "+Ch[10]);

}

}else {

switch (i) {

case 0: System.out.println(Ch[0]);sc.close();break;

case 1: System.out.println(Ch[1]);sc.close();break;

case 2: System.out.println(Ch[2]);sc.close();break;

case 3: System.out.println(Ch[3]);sc.close();break;

case 4: System.out.println(Ch[4]);sc.close();break;

case 5: System.out.println(Ch[5]);sc.close();break;

case 6: System.out.println(Ch[6]);sc.close();break;

case 7: System.out.println(Ch[7]);sc.close();break;

case 8: System.out.println(Ch[8]);sc.close();break;

case 9: System.out.println(Ch[9]);sc.close();break;

case 10: System.out.println(Ch[10]);sc.close();break;

default:break;

}

}

sc.close();

}

}

0-99以内的     想要更多的,在这个基础上加吧

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值