将double值舍入为以.0或.5结尾的值

时间:2013-03-22 04:55:42

标签: c#

我正在尝试将一些值舍入为以下示例,并且需要一些帮助来为它编写数学计算:

input -> 25 ÷ 4 = 6.25        output -> 6.5

input -> 15.5 ÷ 4 = 3.875     output -> 4.0

input -> 24.5 ÷ 4 = 6.125     output -> 6.0

请问如何编写圆形数学程序?!

2 个答案:

答案 0 :(得分:2)

这应该这样做。

double Divide(double numerator, double denominator)
{
    double result = numerator / denominator;

    //round to nearest half-integer
    result = Math.Round(result * 2, MidpointRounding.AwayFromZero) / 2;

    // due to peculiarities of IEEE754 floating point arithmetic
    // we need to round again after dividing back by two
    // to avoid a result like 1.49999999.
    return Math.Round(result, 1);
}

答案 1 :(得分:0)

很抱歉不知道您遇到的困难,所以我想可能是不同类型的浮点数。以下代码就是这样做的:

public static decimal RoundedDivide<T>(T a, T b) {
    var x=2*Convert.ToDecimal(a)/Convert.ToDecimal(b);
    x=((int)(.5m+x)>x?1:0)+(int)x;
    return x/2;
}

有两点需要注意:

  1. 我无法约束ValueType的约束,所以如果传递引用类型的对象,它可能会抛出
  2. 如果您希望double作为返回类型,则只需更改它,并将.5m更改为.5Convert.ToDecimal更改为Convert.ToDouble