1005. Spell It Right (20)

来源:互联网 发布:淘宝怎么发布虚拟产品 编辑:程序博客网 时间:2024/06/06 03:24

1005. Spell It Right (20)

时间限制
400 ms
内存限制
65536 kB
代码长度限制
16000 B
判题程序
Standard
作者
CHEN, Yue

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

提交代码

解题思路  

先定义一个字符串数组,再把各个位置上的数加起来,后面把字符串存下来输出就可以了。

#include<stdio.h>  #include<string.h>  int main()  {    char a[1000];    char b[10][10]={"zero","one","two","three","four","five","six","seven","eight","nine"};    char c[100][10];    int n,h,i;    int sum=0;    scanf("%s",a);    n=strlen(a);    for(i=0;i<n;i++)      sum=sum+(a[i]-'0');    n=0;    if(sum==0){      printf("zero\n");      return 0;    }    while(sum!=0)    {      h=sum%10;      sum=sum/10;      strcpy(c[n],b[h]);      ++n;    }    for(i=n-1;i>0;i--)    {      printf("%s",c[i]);      printf(" ");    }    printf("%s",c[0]);    return 0;  }   



原创粉丝点击