码迷,mamicode.com
首页 > 其他好文 > 详细

Spell It Right

时间:2019-11-29 14:24:00      阅读:88      评论:0      收藏:0      [点我收藏+]

标签:scan   hit   lin   amp   include   ring   pie   lan   har   

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 (≤).

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

 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 }

 

Spell It Right

标签:scan   hit   lin   amp   include   ring   pie   lan   har   

原文地址:https://www.cnblogs.com/muchenyu/p/11957480.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!