人民币转换
题目描述
考试题目和要点:
1、中文大写金额数字前应标明“人民币”字样。中文大写金额数字应用壹、贰、叁、肆、伍、陆、柒、捌、玖、拾、佰、仟、万、亿、元、角、分、零、整等字样填写。
2、中文大写金额数字到“元”为止的,在“元”之后,应写“整字,如532.00应写成“人民币伍佰叁拾贰元整”。在”角“和”分“后面不写”整字。
3、阿拉伯数字中间有“0”时,中文大写要写“零”字,阿拉伯数字中间连续有几个“0”时,中文大写金额中间只写一个“零”字,如6007.14,应写成“人民币陆仟零柒元壹角肆分“。
4、10应写作“拾”,100应写作“壹佰”。例如,1010.00应写作“人民币壹仟零拾元整”,110.00应写作“人民币壹佰拾元整”
5、十万以上的数字接千不用加“零”,例如,30105000.00应写作“人民币叁仟零拾万伍仟元整”
本题含有多组样例输入。
while True: #因为有多组输入
try:
money = input().strip()
FindDot = money.index('.')
CnUnit = ['壹','贰','叁','肆','伍','陆','柒','捌','玖', '拾']
integralUnit = ['元', '拾', '佰', '仟', '万', '拾', '佰', '仟', '亿', '拾', '佰', '仟']
integerPart = money[:-3] #输入的整数部分
zero = 0
a_output = "人民币" #输出的开头
if integerPart != '0':
for i in range(len(integerPart)):
if zero > 0 and int(integerPart[i]) != 0:#当前面有一个或多个数字为0,且当前数字不
#为0时,输出“零”,并且重置zero
a_output += '零'
zero = 0
if int(integerPart[i]) >= 1: #当数字不为0时,输出对应的汉字数字及单位
res = CnUnit[int(integerPart[i])-1]+integralUnit[len(integerPart)-i-1]
res = res.replace('壹拾', '拾') #如果是“壹拾”,则按照要求替换为“拾”
a_output += res
else: #如果当前数字是0的话,zero加1
zero += 1
#print(len(integerPart)-i-1 % 4,end='')
length = len(integerPart)-i-1
#print(length % 4, end='')
#下面的第一个条件是为了区分上面的if条件,非零时已做处理,下面是处理当前数字为0的情况
#比如输入数字105000.00,下面这个判断语句就是输出“万”字
if int(integerPart[i]) == 0 and length != 0 and length % 4 == 0:
a_output += integralUnit[len(integerPart)-i-1]
if money[-4] == '0':
a_output += '元'
#下面是分情况讨论小数部分
if money[-2:] == '00':
a_output += '整'
elif money[-2] == '0':
a_output += CnUnit[int(money[-1])-1] + '分'
elif money[-1] == '0':
a_output += CnUnit[int(money[-2])-1] + '角'
else:
a_output += CnUnit[int(money[-2])-1] + '角'+ CnUnit[int(money[-1])-1] + '分'
for s in range(9): #这个for循环是为了满足上面的第5点要求,使用replace去掉“零”
if "万零" + CnUnit[s] + "仟" in a_output:
a_output = a_output.replace("万零" + CnUnit[s] + "仟", "万" + CnUnit[s] + "仟")
print(a_output)
except:
break
上面的代码是自己根据题目要求写的,花了比较久的时间,但是最终还是通过了,做这种题目,自己要多思考,不要急着去看看别人的代码,自己真正通过思考想出来的,最终才是自己的,才会有更多收获,愿和大家一起学习,共同进步!