欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C#四舍五入用法实例

程序员文章站 2023-12-17 07:58:45
c# 中没有四舍五入函数,程序语言都没有四舍五入函数,因为四舍五入算法不科学,国际通行的是 banker 舍入法 bankers rounding(银行家舍入)算法,即四...

c# 中没有四舍五入函数,程序语言都没有四舍五入函数,因为四舍五入算法不科学,国际通行的是 banker 舍入法

bankers rounding(银行家舍入)算法,即四舍六入五取偶。事实上这也是 ieee 规定的舍入标准。因此所有符合 ieee 标准的语言都应该是采用这一算法的。

math.round 方法默认的也是 banker 舍入法

在 .net 2.0 中 math.round 方法有几个重载方法

math.round(decimal, midpointrounding)
math.round(double, midpointrounding)
math.round(decimal, int32, midpointrounding)
math.round(double, int32, midpointrounding)

将小数值舍入到指定精度。midpointrounding 参数,指定当一个值正好处于另两个数中间时如何舍入这个值

该参数是个 midpointrounding 枚举

此枚举有两个成员,msdn 中的说明是:
awayfromzero 当一个数字是其他两个数字的中间值时,会将其舍入为两个值中绝对值较小的值。
toeven 当一个数字是其他两个数字的中间值时,会将其舍入为最接近的偶数。

注 意!这里关于 midpointrounding.awayfromzero 的说明是错误的!实际舍入为两个值中绝对值较大的值。不过 msdn 中的 例子是正确的,英文描述原文是 it is rounded toward the nearest number that is away from zero.

所以,要实现四舍五入函数,对于正数,可以加一个 midpointrounding.awayfromzero 参数指定当一个数字是其他两个数字的中间值时其舍入为两个值中绝对值较大的值,例:

math.round(3.45, 2, midpointrounding.awayfromzero)

不过对于负数上面的方法就又不对了

因此需要自己写个函数来处理

第一个函数:

double round(double value, int decimals)
{
  if (value < 0)
  {
    return math.round(value + 5 / math.pow(10, decimals + 1), decimals, midpointrounding.awayfromzero);
  }
  else
  {
    return math.round(value, decimals, midpointrounding.awayfromzero);
  }
}

第二个函数:

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);
  }
  string strd = prestr + "." + poststr;
  d = double.parse(strd);
  return d;
}

参数:d表示要四舍五入的数;i表示要保留的小数点后为数。

其中第二种方法是正负数都四舍五入,第一种方法是正数四舍五入,负数是五舍六入。

备注:个人认为第一种方法适合处理货币计算,而第二种方法适合数据统计的显示。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

上一篇:

下一篇: