PAT字符处理题---1002 写出这个数 (20分)
Posted chstor
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PAT字符处理题---1002 写出这个数 (20分)相关的知识,希望对你有一定的参考价值。
[1002 写出这个数 (20分)](https://pintia.cn/problem-sets/994805260223102976/problems/994805324509200384)
#include<iostream>
#include<string>
using namespace std;
string name[10]={"ling","yi","er","san","si","wu"
,"liu","qi","ba","jiu"};
int main(){
string s; cin>>s;
int sum=0;
for(int i=0;i<s.length();i++){
sum+=s[i]-‘0‘;
}
string a=to_string(sum);
for(int i=0;i<a.length();i++){
if(i) cout<<" ";
cout<<name[a[i]-‘0‘];
}
return 0;
}
以上是关于PAT字符处理题---1002 写出这个数 (20分)的主要内容,如果未能解决你的问题,请参考以下文章