您的位置:首页 > 其它

PAT TEST 甲级1005. Spell It Right (20)

2017-01-22 12:59 344 查看
题目:

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:

12345

Sample Output:

one five

注意点:N的范围10^100所以不能用整型或长整。

#include
#include

using namespace std;

int main()
{
string N;
cin>>N;
int a[5];
int sum=0;
int i=0,j;
char num[][10]={"zero","one","two","three","four","five","six","seven","eight","nine"};
for(j=0;j0)
{
a[i]=sum%10;
i++;
sum=sum/10;
}

for(j=i-1;j>0;j--)
{
cout<
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: