当前位置: 编程技术>.net/c#/asp.net
C#四舍五入(函数)用法实例
来源: 互联网 发布时间:2014-10-24
本文导语: 效果: 说明:输入小数,然后输入要保留的位数, 事件:点击Button 代码: 代码如下:public static double Round(double d, int i) { if (d >= 0) { d += 5 * Math.Pow(10, -(i + 1));//...
效果:
说明:输入小数,然后输入要保留的位数,
事件:点击Button
代码:
代码如下:
public static double Round(double d, int i)
{
if (d >= 0)
{
d += 5 * Math.Pow(10, -(i + 1));//求指定次数的指定次幂
}
else
{
d += 5 * Math.Pow(10, -(i + 1));
}
string str = d.ToString();
string[] strs = str.Split('.');
int idot = str.IndexOf('.');
string prestr = strs[0];
string poststr = strs[1];
if (poststr.Length > i)
{
poststr = str.Substring(idot + 1, i);//截取需要位数
}
if (poststr.Length