首页 > 其他 > 详细

[PAT]1005. Spell It Right (20)

时间:2014-11-10 13:46:51      阅读:255      评论:0      收藏:0      [点我收藏+]
/**************************************************************
1005. Spell It Right (20)

时间限制
400 ms
内存限制
32000 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"
char words[10][10]={
	"zero",
	"one",
	"two",
	"three",
	"four",
	"five",
	"six",
	"seven",
	"eight",
	"nine"
};
int main(){
	// printf("%s\n",words[1]);
	//char类型数组不用清零,%s赋值会覆盖
	char N[110];
	//通过字符串读入
	while(scanf("%s",N)!=EOF){
		int n=strlen(N);
		int ans=0;
		for(int i=0;i<n;i++){
			ans+=N[i]-'0';
		}
		// printf("----------%d\n",ans );
		//重新读为字符串
		sprintf(N,"%d",ans);
		// printf("------%s\n",N );
		n=strlen(N);
		for(int i=0;i<n-1;i++){
			printf("%s ",words[N[i]-'0']);
		}
		printf("%s\n",words[N[n-1]-'0']);


	}
}



/**************************************************************
    author: ws
    Language: C
****************************************************************/


[PAT]1005. Spell It Right (20)

原文:http://blog.csdn.net/fnzsjt/article/details/40979727

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!