博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spell It Right
阅读量:6801 次
发布时间:2019-06-26

本文共 1307 字,大约阅读时间需要 4 分钟。

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
1 /*  2  * File:   main.cpp 3  * Author: zjushuiping 4  * 5  * Created on 2012年4月11日, 上午12:13 6  */ 7  8 #include 
9 #include
10 #include
11 #include
12 #include
13 #include
14 #include
15 #include
16 #include
17 #include
18 #include
19 #include
20 #include
21 #include
22 #include
23 24 25 using namespace std;26 27 28 29 30 31 32 /*33 * 34 */35 36 37 char str[100+4];38 39 40 41 char mp[10][15]={ "zero","one","two","three","four","five","six","seven","eight","nine"};42 43 44 45 int main(int argc, char** argv) {46 47 48 49 gets(str);50 int i;51 int len=strlen(str);52 53 int sum=0;54 55 56 for(i=0;i

 

转载于:https://www.cnblogs.com/zjushuiping/archive/2012/05/30/2526963.html

你可能感兴趣的文章
实验二 201521450040马霞
查看>>
C# 禁止windows程序重复运行的两种基本方法
查看>>
django 查询
查看>>
IPC——消息队列
查看>>
metamask源码学习-metamask-controller.js
查看>>
Alpha冲刺(八)
查看>>
nginx vim 单行删除与多行删除
查看>>
CentOs之文件搜索命令find
查看>>
SQL 生成可配置流水号
查看>>
JAVA 7 继承
查看>>
润乾报表分组后扩展行固定填写数据
查看>>
插入一条和上一条数据关联的数据
查看>>
(续)顺序表之单循环链表(C语言实现)
查看>>
iphone-common-codes-ccteam源代码 CCSize.m
查看>>
C# 脚本
查看>>
Intellij IDEA常用操作
查看>>
LeetCode OJ - Symmetric Tree && Same Tree
查看>>
其他内置函数
查看>>
通讯录设计
查看>>
课后作业
查看>>