1417: [蓝桥杯]数的读法 未完成
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1417: [蓝桥杯]数的读法 未完成相关的知识,希望对你有一定的参考价值。
http://oj.ecustacm.cn/problem.php?id=1417
这道题处理好恶心,过了70% 细节太多了,懒得搞了有时间在看看吧。
#include<cstdio>
#include<iostream>
#include<string>
#include<algorithm>
#include<map>
using namespace std;
map<int,string> mp;
/*
亿
万
千
百
十
*/
void f(int x,bool st)
{
bool flag1=false,flag2=false,flag3=false;
if(x>=1000) cout<<mp[x/1000]<<" "<<"qian ",flag1=true;
x=x%1000;
if(x>=100) cout<<mp[x/100]<<" "<<"bai ",flag2=true;
x=x%100;
if(x>=10) {
if( (flag1&&!flag2) ||st) cout<<"ling ";
if(st||flag1||flag2||x/10!=1)cout<<mp[x/10]<<" "<<"shi ";
else cout<<"shi ";
flag3=true;
}
x=x%10;
if((!flag3)&&(flag1||flag2)&&x) cout<<"ling ";
if(x) cout<<mp[x]<<" ";
}
int main(void)
{
mp[0]="ling",mp[1]="yi",mp[2]="er",mp[3]="san",mp[4]="si",mp[5]="wu";
mp[6]="liu",mp[7]="qi",mp[8]="ba",mp[9]="jiu",mp[10]="shi";
long long int x; cin>>x;
bool flag1=false,flag2=false,flag3=false;
if(x>=1e8)
{
f(x/(100000000),flag1);
cout<<"yi ";
flag1=true;
}
x=x%(100000000);
if(x>=1e4)
{
f(x/(10000),flag2);
cout<<"wan ";
flag2=true;
}
x=x%(10000);
if(flag1||flag2) flag3=true;
if(x)
{
f(x,flag3);
}
return 0;
}
以上是关于1417: [蓝桥杯]数的读法 未完成的主要内容,如果未能解决你的问题,请参考以下文章