本文主要是介绍【PAT】【Advanced Level】1005. Spell It Right (20),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1005. Spell It Right (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 (<= 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:12345Sample Output:
one five
https://www.patest.cn/contests/pat-a-practise/1005
思路:
按要求计算输出
CODE:
#include<iostream>
#include<cstring>
#include<string>
#include<cstdio>
using namespace std;string nu[10]={"zero","one","two","three","four","five","six","seven","eight","nine"};
int main()
{int sum=0;char c;while (c=getchar()){if (c=='\n')break;sum+=c-'0';}string re=nu[sum%10];sum/=10;while (sum>0){re=nu[sum%10]+" "+re;sum/=10;}cout<<re;return 0;
}
这篇关于【PAT】【Advanced Level】1005. Spell It Right (20)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!