题目链接:http://www.patest.cn/contests/pat-a-practise/1005
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
我的c++程序:
#include<iostream> #include<stack> #include<string> using namespace std; int main() { string n; string out[10] = { "zero", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine"}; int i=0; int sum = 0; stack<int> st; cin >> n; while (i<n.length())//char 转int,计算n各位数字之和 { sum = n[i] - '0' + sum; i++; } if (sum == 0)//如果和为0,直接输出 { cout << "zero"; } while (sum != 0) { st.push(sum % 10);//取余数进栈 sum = sum / 10; } int flag = 1; while (!st.empty()) { if (flag == 1) { cout << out[st.top()] ;//第一个输出的字符串 flag = 0; } else { cout << ' ' << out[st.top()];//后面的字符串不带空格 } st.pop(); } //system("pause"); return 0; }
本文介绍了一道PAT A 1005编程题的解决方案,该题要求输入一个非负整数N,计算并输出N的所有位数之和的英文表达形式。使用C++实现,通过栈结构逆序输出英文单词。
91

被折叠的 条评论
为什么被折叠?



