使用C 實現阿拉伯數字到大寫中文的轉換

2021-04-13 04:17:45 字數 1820 閱讀 5673

使用c#實現阿拉伯數字到大寫中文的轉換

using system;

public class numformat

// 轉換數字

private char tonum(char x)

// 轉換萬以下整數

private string changeint(string x)

;string ret = "";

int i;

for (i=x.length-1;i>=0;i--)

if (x[i] == '0')

ret = tonum(x[i]) + ret;

else

ret = tonum(x[i]) + strarraylevelnames[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 toint(string x)

else

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 todecimal(string x)

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 += toint(x.substring(0,x.indexof(".")))+"點"+todecimal(x.substring(x.indexof(".")+1));

else

ret += toint(x);

return ret;}}

}測試工程

using system;

classtest ct = new classtest();

system.console.writeline(ct.get_str());

*//*

// 過載運算子

myvector v1 = new myvector(5, 12);

myvector v2 = new myvector(4, 3);

myvector v3 = new myvector();

v3 = v1 + v2;

system.console.writeline("測試一下", v3.length);

*/// 轉換成大寫數字

numformat nf = new numformat();

string x;

while (true)

=", x, nf.numtochn(x));}}

}}

使用C 實現阿拉伯數字到大寫中文的轉換

原始碼下載 using system 本類實現阿拉伯數字到大寫中文的轉換 該類沒有對非法數字進行判別 請呼叫numtochn方法 public class numformat public numformat todo 在此處新增建構函式邏輯 轉換數字 private char tonum char...

阿拉伯數字大寫轉換

public class genchinese private final static string str shu ji 大數量級 private final static string str shu ji 2 千內數量級 public genchinese param intnumber 需...

實現阿拉伯數字大寫中文的轉換

本類實現阿拉伯數字到大寫中文的轉換 該類沒有對非法數字進行判別,請事先自己判斷數字是否合法 public class chinesenum public static string getuppermoney double p money 轉換數字 private char chartonum ch...