39

如何将两位小数相乘并将结果四舍五入到小数点后两位?

例如,如果等式为 41.75 x 0.1,则结果将为 4.175。如果我在 c# 中使用小数执行此操作,它将自动舍入到 4.18。我想四舍五入到 4.17。

我尝试使用 Math.Floor,但它只是四舍五入到 4.00。这是一个例子:

Math.Floor (41.75 * 0.1);
4

8 回答 8

64

Math.Round(...)函数有一个 Enum 来告诉它使用什么舍入策略。不幸的是,这两个定义并不完全适合您的情况。

两种中点舍入模式是:

  1. AwayFromZero - 当一个数字介于其他两个数字之间时,它会朝离零最近的数字四舍五入。(又名,围捕)
  2. ToEven - 当一个数字在其他两个数字之间时,它会向最接近的偶数四舍五入。(0.16 优于 0.17,0.18 优于 0.17)

你想要使用的是Floor一些乘法。

var output = Math.Floor((41.75 * 0.1) * 100) / 100;

变量现在output应该有 4.17。

事实上,您也可以编写一个函数来获取可变长度:

public decimal RoundDown(decimal i, double decimalPlaces)
{
   var power = Convert.ToDecimal(Math.Pow(10, decimalPlaces));
   return Math.Floor(i * power) / power;
}
于 2012-11-23T01:29:29.817 回答
16
public double RoundDown(double number, int decimalPlaces)
{
     return Math.Floor(number * Math.Pow(10, decimalPlaces)) / Math.Pow(10, decimalPlaces);
}
于 2013-10-29T01:46:09.657 回答
11

.NET Core 3.0和即将到来.NET Framework 5.0的以下是有效的

Math.Round(41.75 * 0.1, 2, MidpointRounding.ToZero)
于 2020-07-17T07:33:06.447 回答
8

c# 中没有对精确地板/ceillin 的本机支持。

但是,您可以通过将数字、下限相乘,然后除以相同的乘数来模拟该功能。

例如,

decimal y = 4.314M;
decimal x = Math.Floor(y * 100) / 100;  // To two decimal places (use 1000 for 3 etc)
Console.WriteLine(x);  // 4.31

不是理想的解决方案,但如果数量很少,应该可以工作。

于 2012-11-23T01:38:36.213 回答
1

另一种解决方案是从从零舍入到零舍入。它应该是这样的:

    static decimal DecimalTowardZero(decimal value, int decimals)
    {
        // rounding away from zero
        var rounded = decimal.Round(value, decimals, MidpointRounding.AwayFromZero);

        // if the absolute rounded result is greater 
        // than the absolute source number we need to correct result
        if (Math.Abs(rounded) > Math.Abs(value))
        {
            return rounded - new decimal(1, 0, 0, value < 0, (byte)decimals);
        }
        else
        {
            return rounded;
        }
    }
于 2012-11-27T00:03:32.200 回答
0

我发现最好的方法是使用字符串;数学的二进制变幻莫测往往会出错,否则。等待 .Net 5.0 使这一事实过时。没有小数位是一种特殊情况:您可以为此使用 Math.Floor。否则,我们 ToString 比所需的小数位多一位的数字,然后解析没有最后一位的数字以获得答案:

/// <summary>
/// Truncates a Double to the given number of decimals without rounding
/// </summary>
/// <param name="D">The Double</param>
/// <param name="Precision">(optional) The number of Decimals</param>
/// <returns>The truncated number</returns>
public static double RoundDown(this double D, int Precision = 0)
{
  if (Precision <= 0) return Math.Floor(D);
  string S = D.ToString("0." + new string('0', Precision + 1));
  return double.Parse(S.Substring(0, S.Length - 1));
}
于 2020-10-17T22:22:29.203 回答
0

这是我的防浮四舍五入。

    public static class MyMath
{
    public static double RoundDown(double number, int decimalPlaces)
    {
        string pr = number.ToString();
        string[] parts = pr.Split('.');
        char[] decparts = parts[1].ToCharArray();
        parts[1] = "";
        for (int i = 0; i < decimalPlaces; i++)
        {
            parts[1] += decparts[i];
        }
        pr = string.Join(".", parts);
        return Convert.ToDouble(pr);
    }
}
于 2020-05-31T06:04:31.927 回答
0

如果要将任何双精度舍入到特定的小数位,如果中点无关紧要,您可以使用:

    public double RoundDownDouble(double number, int decimaPlaces)
    {
        var tmp = Math.Pow(10, decimaPlaces);
        return Math.Truncate(number * tmp) / tmp;
    }
于 2021-03-26T22:28:20.493 回答