社区
C#
帖子详情
数字转换???
lunix_ly
2003-11-12 01:39:46
谁能给我一个函数,将输入的阿拉伯数字转换为汉字!在线急等!
...全文
104
6
打赏
收藏
数字转换???
谁能给我一个函数,将输入的阿拉伯数字转换为汉字!在线急等!
复制链接
扫一扫
分享
转发到动态
举报
写回复
配置赞助广告
用AI写文章
6 条
回复
切换为时间正序
请发表友善的回复…
发表回复
打赏红包
lejin
2003-11-12
打赏
举报
回复
For i=1 to len(str)
.....
'逐一替换咯
next i
lunix_ly
2003-11-12
打赏
举报
回复
Please give me !
haoliqi
2003-11-12
打赏
举报
回复
偶也有个方法,要就知声
gxz01
2003-11-12
打赏
举报
回复
使用C#实现阿拉伯数字到大写中文的转换 [转帖]
//Money类
using System;
namespace Money
{
/// <summary>
/// 本类实现阿拉伯数字到大写中文的转换
/// 该类没有对非法数字进行判别
/// 请调用NumToChn方法
/// 作者:menway
/// </summary>
public class Money
{
public Money()
{
//
// TODO: Add constructor logic here
//
}
private char 转换数字(char x)
{
string stringChnNames="零一二三四五六七八九";
string stringNumNames="0123456789";
return stringChnNames[stringNumNames.IndexOf(x)];
}
private string 转换万以下整数(string x)
{
string[] stringArrayLevelNames=new string[4] {"","十","百","千"};
string ret="";
int i;
for (i=x.Length-1;i>=0;i--)
if (x[i]=='0')
ret=转换数字(x[i])+ret;
else
ret=转换数字(x[i])+stringArrayLevelNames[x.Length-1-i]+ret;
while ((i=ret.IndexOf("零零"))!=-1)
ret=ret.Remove(i,1);
if (ret[ret.Length-1]=='零' && ret.Length>1)
ret=ret.Remove(ret.Length-1,1);
if (ret.Length>=2 && ret.Substring(0,2)=="一十")
ret=ret.Remove(0,1);
return ret;
}
private string 转换整数(string x)
{
int len=x.Length;
string ret,temp;
if (len<=4)
ret=转换万以下整数(x);
else if (len<=8)
{
ret=转换万以下整数(x.Substring(0,len-4))+"万";
temp=转换万以下整数(x.Substring(len-4,4));
if (temp.IndexOf("千")==-1 && temp!="")
ret+="零"+temp;
else
ret+=temp;
}
else
{
ret=转换万以下整数(x.Substring(0,len-8))+"亿";
temp=转换万以下整数(x.Substring(len-8,4));
if (temp.IndexOf("千")==-1 && temp!="")
ret+="零"+temp;
else
ret+=temp;
ret+="万";
temp=转换万以下整数(x.Substring(len-4,4));
if (temp.IndexOf("千")==-1 && temp!="")
ret+="零"+temp;
else
ret+=temp;
}
int i;
if ((i=ret.IndexOf("零万"))!=-1)
ret=ret.Remove(i+1,1);
while ((i=ret.IndexOf("零零"))!=-1)
ret=ret.Remove(i,1);
if (ret[ret.Length-1]=='零' && ret.Length>1)
ret=ret.Remove(ret.Length-1,1);
return ret;
}
private string 转换小数(string x)
{
string ret="";
for (int i=0;i<x.Length;i++)
ret+=转换数字(x[i]);
return ret;
}
public string NumToChn(string x)
{
if (x.Length==0)
return "";
string ret="";
if (x[0]=='-')
{
ret="负";
x=x.Remove(0,1);
}
if (x[0].ToString()==".")
x="0"+x;
if (x[x.Length-1].ToString()==".")
x=x.Remove(x.Length-1,1);
if (x.IndexOf(".")>-1)
ret+=转换整数(x.Substring(0,x.IndexOf(".")))+"点"+转换小数(x.Substring(x.IndexOf(".")+1));
else
ret+=转换整数(x);
return ret;
}
}
}
//测试工程
using System;
namespace Money
{
/// <summary>
/// Summary description for Class1.
/// </summary>
class MoneyApp
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main(string[] args)
{
//
// TODO: Add code to start application here
//
Money myMoney=new Money();
string x;
while (true)
{
Console.Write("X=");
x=Console.ReadLine();
if (x=="") break;
Console.WriteLine("{0}={1}",x,myMoney.NumToChn(x));
}
}
}
}
lunix_ly
2003-11-12
打赏
举报
回复
999999999
转换为:玖亿玖千..........
l_clove
2003-11-12
打赏
举报
回复
数字-〉汉字?
内码转换么?
将
数字
转换
成文本的程序
**
数字
转换
成文本程序:原理与实现** 在信息技术领域,
数字
与文本的相互
转换
是基础且常见的操作。当我们谈论将
数字
转换
为文本,如将
数字
32
转换
为“thirty two”,这个过程实际上涉及到编程中的字符串格式化和数值...
你必须知道的495个C语言问题
4.14 怎样在整型和指针之间进行
转换
?能否暂时把整数放入指针变量中,或者相反? *4.15 我怎样把一个int变量
转换
为char*型?我试了类型
转换
,但是不行。 第5章 空指针 空指针和空指针常量 5.1 臭名昭著的空...
数字
转换
大写 python_
数字
转换
路由器之家网今天精心准备的是《
数字
转换
》,下面是详解!Excel 表格中如何把
数字
转换
成时间?Excel如何把
数字
转换
成时间,比如我在其中一个单元格输入3.5,另外一个单元格输出为3:30:00,我想通过一个公式来计算,要...
如何将int型
数字
转换
成char型
数字
?
如何将int型
数字
转换
成char型
数字
? //如何将int型
数字
转换
成char型
数字
? //使用函数 sprintf(s,"%d",a); //其中 >s为char类型数组 // >a为int型一个数 // >头文件为#include<stdio.h> #include<...
列举3种强制类型
转换
和2种隐式类型
转换
?强制类型
转换
和隐式类型
转换
的区别是什么?
强制类型
转换
和隐式类型
转换
的核心区别在于。
C#
111,120
社区成员
642,537
社区内容
发帖
与我相关
我的任务
C#
.NET技术 C#
复制链接
扫一扫
分享
社区描述
.NET技术 C#
社区管理员
加入社区
获取链接或二维码
近7日
近30日
至今
加载中
查看更多榜单
社区公告
让您成为最强悍的C#开发者
试试用AI创作助手写篇文章吧
+ 用AI写文章