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

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

PAT A1005. Spell It Right (20)

2019-11-11 02:40:02
字體:
來源:轉載
供稿:網友

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;}
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 清丰县| 惠州市| 天津市| 濮阳县| 驻马店市| 监利县| 罗江县| 浙江省| 临武县| 洞头县| 湘潭县| 连州市| 通山县| 永州市| 青阳县| 郓城县| 旌德县| 维西| 廊坊市| 高阳县| 会东县| 车险| 唐河县| 靖州| 娄底市| 玉林市| 隆昌县| 景泰县| 凌海市| 翁牛特旗| 兴城市| 孙吴县| 商城县| 肥乡县| 时尚| 开封县| 安庆市| 桂阳县| 平度市| 乐山市| 靖西县|