Given a non-negative integer N, your task is to compute the sum of all the digits of N, and output every digit of the sum in English.
Input Specification:
Each input file contains one test case. Each case occupies one line which contains an N (<= 10100).
Output Specification:
For each test case, output in one line the digits of the sum in English words. There must be one space between two consecutive words, but no extra space at the end of a line.
Sample Input:
12345
Sample Output:
one five
题目大意:给一个非负正数N,计算N的每一位相加的和,然后输出和的每一位的英文读音~
PS:感谢github用户@fs19910227提供的pull request~
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
import java.io.IOException; import java.io.InputStream; public class Main { static String[] words_table = new String[]{"zero", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine"}; public static void main(String[] args) throws IOException { InputStream reader = System.in; int input, sum = 0; while ((input = reader.read()) != '\n') { sum += input - 48; } char[] chars = (sum + "").toCharArray(); for (int i = 0; i < chars.length; i++) { System.out.print(words_table[chars[i] - 48]); if (i == chars.length - 1) { System.out.println(); } else { System.out.print(" "); } } } } |
❤ 点击这里 -> 订阅《PAT | 蓝桥 | LeetCode学习路径 & 刷题经验》by 柳婼