zoukankan      html  css  js  c++  java
  • 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;
    }
    
  • 相关阅读:
    39页第3题 求x的n次幂
    实验4-1 求花费电费的金额
    实验二利用循环计算多个圆柱体体积
    39页第一题 四则运算及其余数
    实验一计算圆的面积
    7-14
    第六章例6-3
    第六章例6-2
    第六章例6-1
    第五章例5-9
  • 原文地址:https://www.cnblogs.com/F-itachi/p/9974390.html
Copyright © 2011-2022 走看看