把数字转化成汉字

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
    class Program
    {
        public static Dictionary<int, string> numberTable = new Dictionary<int, string>();
        public static Dictionary<int, string> digitTable = new Dictionary<int, string>();
        static List<string> list = new List<string>();
        //是否有连续个零
        static bool flag = false;
        static void Main(string[] args)
        {
            start();
            while (true)
            {
                string str = Console.ReadLine();
                int result = 0;
                int.TryParse(str, out result);
                IntChangeHanzi(result);
                for (int i = list.Count - 1; i >= 0; i--)
                {
                    Console.Write(list[i]);
                }
                Console.WriteLine();
                list.Clear();
            }

           
        }
        static void IntChangeHanzi(int number)
        {
            string s = number.ToString();
            int len = s.Length;
            //零做单独的处理
            if (len == 1 && number == 0)
            {
                list.Add("零");
            }
            for( int i = 1;i<=len;i++)
            {   
               int digit = number % 10;
                number = number /10;
                if (i == 1)
                {
                    if (digit != 0)
                    {
                        list.Add(numberTable[digit]);
                    }
                    else
                    {
                        flag = true;
                    }
                }
                else
                {
                    if (digit != 0)
                    {
                        list.Add(digitTable[i]);
                        list.Add(numberTable[digit]);
                        flag = false;
                    }
                    else
                    {
                        if (flag == false)
                        {
                            list.Add(numberTable[digit]);
                            flag = true;
                        }
                    }
                }
            }
        }
        static void start()
        {
            numberTable.Add(0, "零");
            numberTable.Add(1, "一");
            numberTable.Add(2, "二");
            numberTable.Add(3, "三");
            numberTable.Add(4, "四");
            numberTable.Add(5, "五");
            numberTable.Add(6, "六");
            numberTable.Add(7, "七");
            numberTable.Add(8, "八");
            numberTable.Add(9, "九");
            digitTable.Add(1, "零");
            digitTable.Add(2, "十");
            digitTable.Add(3, "百");
            digitTable.Add(4, "千");
            digitTable.Add(5, "万");
            digitTable.Add(6, "十");
            digitTable.Add(7, "百");
            digitTable.Add(8, "千");
            digitTable.Add(9, "亿");     
        }
      
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值