PAT甲1082 Read Number in Chinese(25 分)

#include <string.h>
#include <stdio.h>
#include <algorithm>
#include <vector>
#include <string>
#include <iostream>
#include <map>
#include <queue>
#include <math.h>
using namespace std;

string str;
map<char,string> mp;
map<int,string> mp2;
void init()
{
    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";
    mp2[3]="Qian";
    mp2[2]="Bai";
    mp2[1]="Shi";
}

int main()
{
    init();
    getline(cin,str);
    if(str[0]=='-')
    {
        printf("Fu ");
        str.erase(str.begin());
    }
    string result;
    if(str=="0")
    {
        result="ling";
    }
    int len=str.length();

    int step=0;
    while(len>=4)
    {
        string temp="";
        string target=str.substr(len-4,4);
        len-=4;
        bool flag=false;
        for(int i=3;i>=0;i--)
        {
            if(target[i]=='0'&&flag==true)
            {
                temp="ling "+temp;
                flag=false;
            }
            else if(target[i]!='0'&&i<3)
            {
                temp=mp[target[i]] + " " +mp2[3-i]+ " "+temp;
                flag=true;
            }
            else if(target[i]!='0')
            {
                temp=mp[target[i]]+ " "+temp;
                flag=true;
            }
        }
        if(step==1)
        {
            temp+="Wan ";
        }
        result=temp+result;
        step++;
    }
    string target=str.substr(0,len);
    string temp="";
    bool flag=false;
    int index=4;
    if(len>0)
    {
        for(int i=len-1;i>=0;i--)
        {
            if(target[i]=='0'&&flag)
            {
                temp="ling "+temp;
                flag=false;
            }
            else if(i==len-1&&target[i]!='0')
            {
                temp=mp[target[i]]+" "+temp;
                flag=true;
            }
            else if(i<len-1&&target[i]!='0')
            {
                temp=mp[target[i]]+" "+mp2[len-i-1]+" "+temp;
                flag=true;
            }
        }
        if(step==1)
        {
            temp+="Wan ";
        }
        else if(step==2)
        {
            temp+="Yi ";
        }
        result=temp+result;
    }
    if(result[result.length()-1]==' ')
    {
        result.erase(result.length()-1);
    }
    cout<<result;
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值