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.html
Each input file contains one test case. Each case occupies one line which contains an N (≤).git
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.spa
12345
one five
1 #include<stdio.h> 2 #include<string.h> 3 #include<stdlib.h> 4 int main(){ 5 char n[100]; 6 char str[100]; 7 char *m[10]={"zero","one","two","three","four","five","six","seven","eight","nine"}; 8 int temp,sum=0,i=0; 9 scanf("%s",n); 10 for(i=0;i<strlen(n);i++){ 11 temp=n[i]-'0'; 12 sum+=temp; 13 } 14 sprintf(str,"%d",sum); 15 int b=str[strlen(str)-1]-'0'; 16 for(i=0;i<strlen(str)-1;i++){ 17 int a=str[i]-'0'; 18 printf("%s ",m[a]); 19 } 20 printf("%s",m[b]); 21 return 0; 22 }