• PAT 甲级 1005 Spell It Right (20)(代码)


    1005 Spell It Right (20)(20 分)

    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 (<= 10^100^).

    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
    #include<iostream>
    #include<string>
    using namespace std;
    int main() {
    	string str, trans[10] = { "zero","one","two","three","four","five","six","seven","eight","nine" };
    	char ch;
    	int sum=0;
    	while (ch=getchar()) {
    		if (ch == '
    ')break;
    		sum += (ch - '0');
    	}
    	str = to_string(sum);   //将和转为字符串
    	cout << trans[str[0] - '0'];   //输出
    	for(int i=1;i<str.length();i++)
    		cout <<" " <<trans[str[i]-'0'];
    	return 0;
    }
    
  • 相关阅读:
    Java 之 Maven 基础
    JavaScript 之 RegExp 对象
    Java 之 Jedis
    Java 之 Redis 基础
    Java 之 NOSQL
    JavaWeb 之 JSON
    JavaWeb 之 Ajax
    【LeetCode-数组】外观数列
    【LeetCode-树】从先序遍历还原二叉树
    【LeetCode-数组】搜索二维矩阵 II
  • 原文地址:https://www.cnblogs.com/F-itachi/p/9974390.html
Copyright © 2020-2023  润新知