题目如下:

Given an integer with no more than 9 digits, you are supposed to read it in the traditional Chinese way. Output "Fu" first if it is negative. For example, -123456789 is read as "Fu yi Yi er Qian san Bai si Shi wu Wan liu Qian qi Bai ba Shi jiu". Note: zero
("ling") must be handled correctly according to the Chinese tradition. For example, 100800 is "yi Shi Wan ling ba Bai".

Input Specification:

Each input file contains one test case, which gives an integer with no more than 9 digits.

Output Specification:

For each test case, print in a line the Chinese way of reading the number. The characters are separated by a space and there must be no extra space at the end of the line.

Sample Input 1:

-123456789

Sample Output 1:

Fu yi Yi er Qian san Bai si Shi wu Wan liu Qian qi Bai ba Shi jiu

Sample Input 2:

100800

Sample Output 2:

yi Shi Wan ling ba Bai

题目要求按照中国人的习惯阅读一个不超过9位的数字,这道题的坑比较多,一定要考虑到所有的情况。

首先要抓住规律,我们可以发现,一个数字的读法在每个4位是一致的。

例如12341234,我们读作“一千二百三十四万一千二百三十四”,我们可以看到除去万字以外读法完全一致。因此我们集中精力解决四位数的读法,然后加上亿、万等即可。

在解决的时候,注意0的读法,例如1000读作一千,而1050读作一千零五十,1005读作一千零五,另外根据题目要求,10读作一十而不是十。

四位的读法分析:一次性传入4位,高位允许全0,因为要处理不同部位的4位。

①一位数直接读,读作零到九。

②两位数判断十位是否是0,如果是,并且个位不是0,设个位为x,应该读作零x,例如10,0005,传入0005,整个数应该读作十万零五;如果十位为0并且个位为0,则不读。例如10,0000,万已经由高4位处理完毕,读作10万,低位不必读。

③三位数、四位数和两位数的思路一致,首先判断是否为0,如果发现当前位为0并且该位后面有不为0的,应该读一个零,注意不要读多了。

④一般情况只需要按照不同的位先输出数字,然后输出Qian Bai Shi即可,注意缩进处理。

把处理四位数的方法封装成一个函数。

整个数的处理方法为≤4位的直接用上面的函数,>4的截取不同的字符段来得到不同的位,每4位一截取。

代码如下:

#include <iostream>
#include <string>
#include <string.h>
#include <sstream>
#include <stdio.h> using namespace std; char* values[] = {"ling","yi","er","san","si","wu","liu","qi","ba","jiu"}; int char2int(char c){
return c - '0';
} void handleNum(string num){ int bits = num.length(); bool printZero = false;
switch(bits){
case 1:{
int ge = char2int(num[0]);
printf("%s",values[ge]);
break;
}
case 2:{
int shi = char2int(num[0]);
int ge = char2int(num[1]);
if(shi != 0) printf("%s Shi",values[shi]);
else if(!printZero){
printf("ling");
printZero = true;
}
if(ge != 0) printf(" %s",values[ge]);
break;
}
case 3:{
int bai = char2int(num[0]);
int shi = char2int(num[1]);
int ge = char2int(num[2]);
if(bai != 0) {printf("%s Bai",values[bai]); printZero = false;}
else if(!printZero && (shi !=0 || ge != 0)){
printf("ling");
printZero = true;
}
if(shi != 0) { printf(" %s Shi",values[shi]); printZero = false; }
else if(!printZero && ge!=0){
printf(" ling");
printZero = true;
}
if(ge != 0) printf(" %s",values[ge]);
break;
}
case 4:{
int qian = char2int(num[0]);
int bai = char2int(num[1]);
int shi = char2int(num[2]);
int ge = char2int(num[3]);
if(qian != 0) {printf("%s Qian",values[qian]); printZero = false;}
else if(!printZero && (bai!=0 || shi!=0 || ge!=0)){
printf("ling");
printZero = true;
}
if(bai != 0) {printf(" %s Bai",values[bai]); printZero = false;}
else if(!printZero && (shi != 0 || ge != 0)){
printf(" ling");
printZero = true;
}
if(shi != 0) {printf(" %s Shi",values[shi]); printZero = false;}
else if(!printZero && ge != 0){
printf(" ling");
printZero = true;
}
if(ge != 0) printf(" %s",values[ge]);
}
} } int main()
{
string num;
cin >> num;
if(num[0] == '-'){
num = num.substr(1);
cout << "Fu ";
}
int bits = num.length();
switch(bits){
case 1:
case 2:
case 3:
case 4:
handleNum(num);
break;
case 5:{
int wan = char2int(num[0]);
printf("%s Wan ",values[wan]);
handleNum(num.substr(1));
break;
}
case 6:{
handleNum(num.substr(0,2));
printf(" Wan ");
handleNum(num.substr(2));
break;
}
case 7:{
handleNum(num.substr(0,3));
printf(" Wan ");
handleNum(num.substr(3));
break;
}
case 8:{
handleNum(num.substr(0,4));
printf(" Wan ");
handleNum(num.substr(4));
break;
}
case 9:{
handleNum(num.substr(0,1));
printf(" Yi ");
handleNum(num.substr(1,4));
printf(" Wan ");
handleNum(num.substr(5));
break;
}
}
return 0;
}

1082. Read Number in Chinese (25)的更多相关文章

  1. 1082. Read Number in Chinese (25)-字符串处理

    题意就是给出9位以内的数字,按照汉子的读法读出来. 读法请看下方的几个例子: 5 0505 0505 伍亿零伍佰零伍万零伍佰零伍 5 5050 5050 伍亿伍仟零伍拾万伍仟零伍拾  (原本我以为这个 ...

  2. 1082 Read Number in Chinese (25分)

    // 1082.cpp : 定义控制台应用程序的入口点. // #include <iostream> #include <string> #include <vecto ...

  3. PAT (Advanced Level) 1082. Read Number in Chinese (25)

    模拟题. #include<cstdio> #include<cstring> #include<cmath> #include<vector> #in ...

  4. 【PAT甲级】1082 Read Number in Chinese (25 分)

    题意: 输入一个九位整数,输出它的汉字读法(用拼音表示). trick: 字符串数组""其实会输出一个空格,而不是什么都不输出,导致测试点0和4格式错误. AAAAAccepted ...

  5. pat1082. Read Number in Chinese (25)

    1082. Read Number in Chinese (25) 时间限制 400 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yu ...

  6. A1082 Read Number in Chinese (25 分)

    1082 Read Number in Chinese (25 分)   Given an integer with no more than 9 digits, you are supposed t ...

  7. 1082 Read Number in Chinese (25 分)

    1082 Read Number in Chinese (25 分) Given an integer with no more than 9 digits, you are supposed to ...

  8. PAT 1082 Read Number in Chinese[难]

    1082 Read Number in Chinese (25 分) Given an integer with no more than 9 digits, you are supposed to ...

  9. A1082 Read Number in Chinese (25)(25 分)

    A1082 Read Number in Chinese (25)(25 分) Given an integer with no more than 9 digits, you are suppose ...

随机推荐

  1. 【小小复习·大米饼】

    (一)数位DP模板 ·LIS的数位DP: ·含b进制数个数+数形结合的数位DP ·平衡数的数位DP: (二)网络流问题 ·Edmonds_Karp:(见书)·Dinic(见书)·ISAP(见书)·例题 ...

  2. Python基础学习(第三周)

    集合的操作 集合是一个无序的,不重复的数据组合,它的主要作用如下: 去重,把一个列表变成集合,就自动去重了 关系测试,测试两组数据之间的交集,差集,并集等关系 集合的写法 list_1 = set([ ...

  3. jQuery Datetable 渲染

    渲染器 有些情况下,使用表时,表中的行的数据源不包含您希望在表中直接显示的值.您可能希望将其转换为不同的表示形式(时间戳为人类可读的格式),合并数据点(名字和姓氏)或对该值执行一些计算(计算营业额和费 ...

  4. php留言板的实现

    留言板功能的实现,主要就是通过编程语言对数据库进行操作,简单说也就是插入和查询的实现.不管是什么语言进行实现,道理都是一样的. 应学习需要,这里用php世界上最美的语言来进行实现. 主要步骤为: 连接 ...

  5. js 当前时间刷新

    <p>每隔1秒钟,打印当前时间</p> <div id="time"></div> <script> function ...

  6. sqlserver 查询 inner join 同一表2次 只出一条查询结果

    inner join T_MTN_MobileNumber k on 1=1 and k.hddm='01' inner join (select a.hdxx+','+b.hdxx as hdxx ...

  7. eclipse的maven操作无反应

    第一 查eclipse能不能正常用 hi world.java 第二 查maven能不能正常用 cmd: mvn -v 第三 看看maven和eclipse是不是64位之类的 第四 maven和ecl ...

  8. java反射 概念

    一.什么是反射机制         简单的来说,反射机制指的是程序在运行时能够获取自身的信息.在java中,只要给定类的名字,     那么就可以通过反射机制来获得类的所有信息. 二.哪里用到反射机制 ...

  9. redis在java客户端的操作

    redis高性能,速度快,效率高的特点,用来做缓存服务器是很不错的选择.(和memcache相似)redis在客户端的操作步骤: 1.redis单机版操作 1.1通过Jedis对象操作 (1)将安装r ...

  10. MAC OS X下的Linux环境

    关键字: HomeBrew,好比Windows下的Cygwin 安装Homebrew 该si胜过macport ruby -e "$(curl -fsSL https://raw.githu ...