题目地址:
编程题 - PAT (Advanced Level) Practice (pintia.cn)
介绍
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.
代码
#include<bits/stdc++.h>
using namespace std;
string word[11]={"zero","one","two","three","four","five","six","seven","eight","nine"};
int main()
{
string ssr;
cin>>ssr;
int n=ssr.length();
int sum=0;
for(int i=0;i<=n-1;++i)
{
sum+=(ssr[i]-'0');
}
ssr=to_string(sum);
cout<<word[ssr[0]-'0'];
for(int i=1;i<=ssr.length()-1;++i)
{
cout<<" "<<word[ssr[i]-'0'];
}
return 0;
}