PAT 甲级 1005. Spell It Right

来源:互联网 发布:淘宝机械人 编辑:程序博客网 时间:2024/06/05 11:09

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

简单的字符串处理,可以用栈储存每一位数

#include<iostream>#include<stack>#include<cstring>#include<cstdio>using namespace std;char num[10][10]={"zero","one","two","three","four","five","six","seven","eight","nine"};int main(){char str[100000];while(cin>>str){stack<int> s;int sum=0;int len=strlen(str);for(int i=0;i<len;i++) sum+=str[i]-'0';while(1){s.push(sum%10);sum/=10;if(!sum) break;}while(!s.empty()){if(s.size()==1){printf("%s\n",num[s.top()]);s.pop();break;}printf("%s ",num[s.top()]);s.pop();}}}