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;
    }
    
  • 相关阅读:
    NOIP 模拟 序列操作
    LUOGU 1525 关押罪犯
    HDU2473 Junk-Mail Filter
    BZOJ 2096 Pilots
    luogu 3939 数颜色
    NOIP模拟 赌博游戏
    Unity3D
    HTML5
    Cocos2d-x——支持多触点
    Cocos2d-x——Cocos2d-x 屏幕适配总结
  • 原文地址:https://www.cnblogs.com/F-itachi/p/9974390.html
Copyright © 2011-2022 走看看