如何将两位小数相乘并将结果四舍五入到小数点后两位?
例如,如果等式为 41.75 x 0.1,则结果将为 4.175。如果我在 c# 中使用小数执行此操作,它将自动舍入到 4.18。我想四舍五入到 4.17。
我尝试使用 Math.Floor,但它只是四舍五入到 4.00。这是一个例子:
Math.Floor (41.75 * 0.1);
该Math.Round(...)
函数有一个 Enum 来告诉它使用什么舍入策略。不幸的是,这两个定义并不完全适合您的情况。
两种中点舍入模式是:
你想要使用的是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;
}
public double RoundDown(double number, int decimalPlaces)
{
return Math.Floor(number * Math.Pow(10, decimalPlaces)) / Math.Pow(10, decimalPlaces);
}
自.NET Core 3.0
和即将到来.NET Framework 5.0
的以下是有效的
Math.Round(41.75 * 0.1, 2, MidpointRounding.ToZero)
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
不是理想的解决方案,但如果数量很少,应该可以工作。
另一种解决方案是从从零舍入到零舍入。它应该是这样的:
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;
}
}
我发现最好的方法是使用字符串;数学的二进制变幻莫测往往会出错,否则。等待 .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));
}
这是我的防浮四舍五入。
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);
}
}
如果要将任何双精度舍入到特定的小数位,如果中点无关紧要,您可以使用:
public double RoundDownDouble(double number, int decimaPlaces)
{
var tmp = Math.Pow(10, decimaPlaces);
return Math.Truncate(number * tmp) / tmp;
}