国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

PAT A1005. Spell It Right (20)

2019-11-11 00:44:57
字體:
來源:轉載
供稿:網友

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:
12345Sample Output:
one five
#include <cstdio>#include <algorithm>#include <cmath>#include <cstring>#define Max 100001using namespace std;int main(){	char N[11][11]={"zero","one","two","three","four","five","six","seven","eight","nine"};	char n[111];	int sum=0,m[111],k=0;	scanf("%s",n);	for(int i=0;i<strlen(n);i++)	{		sum+=n[i]-'0';	}	if(sum==0) PRintf("zero/n");	else {		while(sum>0)		{			m[k++]=sum%10;			sum/=10;		}		for(int i=k-1;i>=0;i--)		{			printf("%s",N[m[i]]);			if(i==0) printf("/n");			else printf(" ");		}	}	system("pause");	return 0;}
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 永泰县| 靖边县| 法库县| 项城市| 台州市| 安陆市| 西林县| 金溪县| 扶风县| 乌拉特中旗| 公安县| 蓝田县| 沐川县| 通江县| 宕昌县| 阿合奇县| 德庆县| 凤山县| 河间市| 永春县| 洪泽县| 枣强县| 武威市| 衡山县| 恩平市| 晋中市| 新野县| 准格尔旗| 南通市| 尉氏县| 黄梅县| 驻马店市| 镇安县| 蒲江县| 饶河县| 赤城县| 惠来县| 靖远县| 通榆县| 昌都县| 怀来县|