1005 Spell It Right (20 分)难度: 简单 / 知识点: 模拟
Posted 辉小歌
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1005 Spell It Right (20 分)难度: 简单 / 知识点: 模拟相关的知识,希望对你有一定的参考价值。
https://pintia.cn/problem-sets/994805342720868352/problems/994805519074574336
#include<bits/stdc++.h>
using namespace std;
int sum;
string a[15]={"zero","one","two","three","four","five","six","seven","eight","nine"};
int main(void)
{
string s; cin>>s;
for(int i=0;i<s.size();i++) sum+=s[i]-'0';
s=to_string(sum);
for(int i=0;i<s.size();i++)
{
if(i) cout<<" ";
cout<<a[s[i]-'0'];
}
return 0;
}
以上是关于1005 Spell It Right (20 分)难度: 简单 / 知识点: 模拟的主要内容,如果未能解决你的问题,请参考以下文章
PAT 甲级 1005 Spell It Right (20 分)