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

PAT字符处理题---1002 写出这个数 (20分)

时间:2020-06-09 18:11:20      阅读:63      评论:0      收藏:0      [点我收藏+]

标签:string   ref   set   cin   --   字符处理   problem   problems   include   

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分)

标签:string   ref   set   cin   --   字符处理   problem   problems   include   

原文地址:https://www.cnblogs.com/bingers/p/13074360.html

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