
C#
文章平均质量分 80
hj3793
NcZerg
展开
-
数字转换成人民币大写字符
private static string MoneyNum = "零一二三四五六七八九"; private static string MoneyUnit = "十百千万十百千亿"; private static string CashUnit = "元角分整"; private static string[] BeforeReplace原创 2007-10-26 00:08:00 · 1156 阅读 · 0 评论 -
C#计算24点
#region 24点算法 /* * Count24(3,3,7,7) * 穷举法 * */ private string[] countMethod = new string[] { "+", "-", "*", "/" }; private int[] countNum;原创 2007-10-26 00:09:00 · 3121 阅读 · 0 评论