使用Decimal.Round,我只能在ToEven
和AwayFromZero
之间进行选择,现在我想将其四舍五入到较小的数字,即截断,删除超出所需小数的数字:
public static void Main()
{
Console.WriteLine("{0,-10} {1,-10} {2,-10}", "Value", "ToEven", "AwayFromZero");
for (decimal value = 12.123451m; value <= 12.123459m; value += 0.000001m)
Console.WriteLine("{0} -- {1} -- {2}", value, Math.Round(value, 5, MidpointRounding.ToEven),
Math.Round(value, 5, MidpointRounding.AwayFromZero));
}
// output
12.123451 -- 12.12345 -- 12.12345
12.123452 -- 12.12345 -- 12.12345
12.123453 -- 12.12345 -- 12.12345
12.123454 -- 12.12345 -- 12.12345
12.123455 -- 12.12346 -- 12.12346
12.123456 -- 12.12346 -- 12.12346
12.123457 -- 12.12346 -- 12.12346
12.123458 -- 12.12346 -- 12.12346
12.123459 -- 12.12346 -- 12.12346
我只想将所有这些舍入到12.12345
,即保留5位小数,并截断剩余的小数。有更好的方法吗?
答案 0 :(得分:5)
decimal.Truncate(value * (decimal)Math.Pow(10, 5)) / (decimal)Math.Pow(10, 5);
或只是
decimal.Truncate(value * 100000) / 100000;
应该通过将值向左移5位,截断并移回5位数来解决您的问题。
4个步骤的例子:
* 100000
decimal.Truncate
/ 100000
不像第一种方法那么简单,但在我的设备上使用字符串并将其拆分至少两倍。这是我的实施:
string[] splitted = value.ToString(CultureInfo.InvariantCulture).Split('.');
string newDecimal = splitted[0];
if (splitted.Length > 1)
{
newDecimal += ".";
newDecimal += splitted[1].Substring(0, Math.Min(splitted[1].Length, 5));
}
decimal result = Convert.ToDecimal(newDecimal, CultureInfo.InvariantCulture);
答案 1 :(得分:1)
您可以使用Math.Floor
,如果在使用之前修改小数位,然后返回原来的位置,如下所示:
public static decimal RoundDown(decimal input, int decimalPlaces)
{
decimal power = (decimal) Math.Pow(10, decimalPlaces);
return Math.Floor(input * power) / power;
}
答案 2 :(得分:0)
您是否可能正在寻找Math.Floor
?
地板(十进制) 返回小于或等于指定十进制数的最大整数。
地板(双人) 返回小于或等于指定的双精度浮点数的最大整数。