• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

(C#)数值型货币的大写转换

发布: 2007-7-01 11:09 | 作者: admin | 来源: | 查看: 16次 | 进入软件测试论坛讨论

领测软件测试网 本人现在做的项目要求对数值型货币,转换成大写,在网上搜索了半天,没有找到C#写的类型,不得不自己写了,测试了,还能满足要求,只是算法有点繁琐,有哪位大虾再给改改!
下面就是我得代码:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;

namespace WinMarket
{
/// <summary>
/// Classfun 的摘要说明。
/// </summary>
public class Classfun
{
private string Capstr;

public Classfun()
{
//
// TODO: 在此处添加构造函数逻辑
//
}
public string MoneyNumtoCap(decimal Num)
{
string Cap="零壹贰叁肆伍陆柒捌玖";
string Numstr="0123456789";
string MoneyNumstr=Num.ToString();
int Pint=MoneyNumstr.IndexOf(".");
int Numint;

string Moneyint=null;
string Moneydec=null;
string Intstr=null;
string MoneyCap=null;
string Moneyintstr=null;
string Moneydecstr=null;
// Capstr=Pint.ToString();

if(Pint!=-1)
{
string strArr=".";
char[] charArr=strArr.ToCharArray();
string[] MoneyNumArr=MoneyNumstr.Split(charArr);
Moneyint=MoneyNumArr[0].ToString();
Moneydec=MoneyNumArr[1].ToString();

}
else
{
Moneyint=MoneyNumstr;
Moneydec="00";
}

if(Moneyint.Length>16)
{
MessageBox.Show("数值超界");
}
else
{
//--- 处理整数部分--------

for(int j=1;j<=Moneyint.Length;j++)
{
Moneyintstr=Moneyint.Substring(j-1,1);
for(int i=0;i<=9;i++)
{

Intstr=Numstr.Substring(i,1);
MoneyCap=Cap.Substring(i,1);

if(Moneyintstr==Intstr)
{

switch (Intstr)
{
case "0":
Capstr=Capstr+MoneyCap;
break;
case "1":
Capstr=Capstr+MoneyCap;
break;
case "2":
Capstr=Capstr+MoneyCap;
break;
case "3":
Capstr=Capstr+MoneyCap;
break;
case "4":
Capstr=Capstr+MoneyCap;
break;
case "5":
Capstr=Capstr+MoneyCap;
break;
case "6":
Capstr=Capstr+MoneyCap;
break;
case "7":
Capstr=Capstr+MoneyCap;
break;
case "8":
Capstr=Capstr+MoneyCap;
break;
case "9":
Capstr=Capstr+MoneyCap;
break;
}
}
}
Numint=Moneyint.Length-j+1;
switch (Numint)
{
case 16:
Capstr=Capstr+"仟万";
break;
case 15:
Capstr=Capstr+"佰万";
break;
case 14:
Capstr=Capstr+"拾万";
break;
case 13:
Capstr=Capstr+"万";
break;

case 12:
Capstr=Capstr+"仟";
break;

case 11:
Capstr=Capstr+"佰";
break;

case 10:
Capstr=Capstr+"拾";
break;

case 9:
Capstr=Capstr+"亿";
break;

case 8:
Capstr=Capstr+"仟";
break;

case 7:
Capstr=Capstr+"佰";
break;

case 6:
Capstr=Capstr+"拾";
break;


case 5:
Capstr=Capstr+"万";
break;

case 4:
Capstr=Capstr+"仟";
break;
case 3:
Capstr=Capstr+"佰";
break;
case 2:
Capstr=Capstr+"拾";
break;
case 1:
Capstr=Capstr+"元";
break;

}

}

//------处理小数部分-----
for(int j=1; j<=2; j++)
{
Moneydecstr=Moneydec.Substring(j-1,1);

for(int i=0;i<=9;i++)
{
Intstr=Numstr.Substring(i,1);
MoneyCap=Cap.Substring(i,1);
if(Moneydecstr==Intstr)
{

switch (Intstr)
{
case "0":
Capstr=Capstr+MoneyCap;
break;
case "1":
Capstr=Capstr+MoneyCap;
break;
case "2":
Capstr=Capstr+MoneyCap;
break;
case "3":
Capstr=Capstr+MoneyCap;
break;
case "4":
Capstr=Capstr+MoneyCap;
break;
case "5":
Capstr=Capstr+MoneyCap;
break;
case "6":
Capstr=Capstr+MoneyCap;
break;
case "7":
Capstr=Capstr+MoneyCap;
break;
case "8":
Capstr=Capstr+MoneyCap;
break;
case "9":
Capstr=Capstr+MoneyCap;
break;
}
}
}


switch(j)
{
case 1:
Capstr=Capstr+"角";
break;
case 2:
Capstr=Capstr+"分";
break;

}

}

}

return Capstr;
}








}
}


延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备2023014753号-2
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网