本文共 834 字,大约阅读时间需要 2 分钟。
#include#include using namespace std;string a[10] = { "", "Shi", "Bai", "Qian", "Wan", "Shi", "Bai", "Qian", "Yi" };string b[10] = { "ling", "yi", "er", "san", "si", "wu", "liu", "qi", "ba", "jiu" };stack s;void solve(int x){ for (int i = 0; x > 0; i++, x /= 10){ if (x % 10){ if (i) s.push(a[i]); s.push(b[x % 10]); }else{ if (i == 4) { if (x % 10000) s.push(a[i]); }//万前面的四位不都为0 if (s.empty() || s.top() == b[0] || s.top() == a[4]) continue; s.push(b[0]); } }}int main(){ int n; scanf("%d", &n); solve(abs(n)); if (n < 0) s.push("Fu"); while (!s.empty()){ cout << s.top(); s.pop(); if (!s.empty()) printf(" "); } if (!n) printf("ling"); printf("\n"); return 0;}
转载地址:http://ddyax.baihongyu.com/