pat甲 1005. Spell It Right

1005. Spell It Right (20)

时间限制
400 ms
内存限制
65536 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
 
   
tips:思路实现一个大数字各位求和之后然后进行英文输出
这里用字符串读数据,用整形求和之后再转换为字符串,输出关系用一个字符串来表示。
代码很简洁:
 
   
#include
#include
#include
using namespace std;
string a[10]={"zero","one","two","three","four","five","six","seven","eight","nine"};
int main()
{
	string s;
	int ans=0;
	cin>>s;
	
	for(int i=0;i


你可能感兴趣的:(PAT)