P1617 爱与愁的一千个伤心的理由
题目背景
(本道题目隐藏了两首歌名,找找看哪~~~)
《爱与愁的故事第一弹·heartache》第二章。
经历了心痛后,爱与愁大神不行了。
题目描述
月落乌啼问爱与愁大神为什么,爱与愁大神写了一个数字 n n n( n ≤ 9999 n \le 9999 n≤9999),说翻译成英语就知道为什么了。月落乌啼接过这个数字后,本想翻译成英语,但是班主任叫他去帮个忙。他想尽快知道答案,于是这个艰巨的任务就拜托你了。
标准美式英语,仅在末两位 $ \le 10$ 时加 and
且没有连字符。
输入格式
只有一行,一个数 n n n( n ≤ 9999 n \le 9999 n≤9999)
输出格式
一行英文,表示 n n n 翻译成英语的答案。
输入输出样例 #1
输入 #1
5208
输出 #1
five thousand two hundred and eight
输入输出样例 #2
输入 #2
5280
输出 #2
five thousand two hundred eighty
输入输出样例 #3
输入 #3
5000
输出 #3
five thousand
输入输出样例 #4
输入 #4
5028
输出 #4
five thousand and twenty eight
说明/提示
输出行初不大写。按标准美式英语输出,即两个非零的数中间没零则不加 and
,行末无句号。
C++实现
#include<bits/stdc++.h>
using namespace std;
string _233[10]={“”,“one”,“two”,“three”,“four”,“five”,“six”,“seven”,“eight”,“nine”};//这个数组是用来输出个位数
string _2333[4]={“”,“”,“hundred”,“thousand”};//这个数组是用来输出位数数
string _23333[10]={“”,“”,“twenty”,“thirty”,“forty”,“fifty”,“sixty”,“seventy”,“eighty”,“ninety”};//解决问题3
string _233333[10]={“ten”,“eleven”,“twelve”,“thirteen”,“fourteen”,“fifteen”,“sixteen”,“seventeen”,“eighteen”,“ninteen”};
string d,s;
int main(){
cin>>d;
if(d.size()1){
if(d[0]‘0’){//解决问题2
cout<<“zero”;
return 0;
}
cout<<_233[(int)d[0]-‘0’];//顺便把只有个位数的情况写掉
return 0;
}
for(int i=0;i<d.size();i++)
s[d.size()-1-i]=d[i];
for(int i=d.size()-1;i>=0;i–){
if(i>1&&s[i]>‘0’) cout<<_233[(int)s[i]-‘0’]<<’ ‘,cout<<_2333[i]<<’ ‘;
if(i2){
if(s[i]‘0’&&(s[1]!=‘0’||s[0]!=‘0’))
cout<<“and”<<’ ‘;//问题1
}
if(i1)
if(s[i]‘0’){
if(s[0]!=‘0’&&s[2]!=‘0’)//如果输出过and就不用再输出
cout<<“and”<<’ ‘;
}
else{
int x=(int)s[i]-‘0’;
if(x!=1) cout<<_23333[x]<<’ ‘;
else{
x=0;
x+=(int)s[0]-‘0’;
cout<<_233333[x]<<’ ';
return 0;
}
}
if(i==0) cout<<_233[(int)s[i]-‘0’];
}
return 0;
}
后续
接下来我会不断用C++来实现信奥比赛中的算法题、GESP考级编程题实现、白名单赛事考题实现,记录日常的编程生活、比赛心得,感兴趣的请关注,我后续将继续分享相关内容