码迷,mamicode.com
首页 > 其他好文 > 详细

写出这个数(20)

时间:2018-03-08 02:33:41      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:pre   space   return   int   lin   stream   for   class   AC   

 1 #include <iostream>
 2 #include <algorithm>
 3 #include <string>
 4 using namespace std;
 5 const int maxn = 15;
 6 string a;
 7 char s[maxn][maxn] = { "ling", "yi", "er", "san", "si", "wu", "liu", "qi", "ba", "jiu" };
 8 int b[10005];
 9 
10 int main(){
11 
12     while (cin >> a){
13         int ans = 0;
14         for (char x : a){
15             ans += x - 0;
16         }
17         if (ans == 0){
18             cout << "ling" << endl;
19             continue;
20         }
21         int len = 0;
22         while (ans){
23             b[len++] = ans % 10;
24             ans /= 10;
25         }
26         for (int i = len - 1; i >= 0; i--){
27             if (i == len - 1){
28                 cout << s[b[i]];
29             }
30             else
31                 cout << " " << s[b[i]];
32         }
33         cout << endl;
34     }
35 
36     //system("pause");
37     return 0;
38 }

 

写出这个数(20)

标签:pre   space   return   int   lin   stream   for   class   AC   

原文地址:https://www.cnblogs.com/jaydenouyang/p/8525688.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!