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;
    }
    
  • 相关阅读:
    SVN
    git
    电商架构
    django
    linux单项目发布流程
    pandas的基本功能(一)
    Swift 添加自定义响应事件
    Swfit中视图跳转
    移动设备默认不播放媒体文件间接解决办法
    HTML5 使用sessionStorage实现页面返回刷新
  • 原文地址:https://www.cnblogs.com/F-itachi/p/9974390.html
Copyright © 2011-2022 走看看