c# – 将十进制数字舍入到较小的数字
作者:互联网
使用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位小数,并截断剩余的小数.有一个更好的方法吗?
解决方法:
decimal.Truncate(value * (decimal)Math.Pow(10, 5)) / (decimal)Math.Pow(10, 5);
或者干脆
decimal.Truncate(value * 100000) / 100000;
应该通过将值向左移5位,截断并移回5位数来解决您的问题.
4个步骤的示例:
> 1.23456 * 100000
> 12345.6 decimal.Truncate
> 12345/100000
> 1.2345
没有第一种方法那么简单,但在我的设备上使用字符串并将其拆分至少两倍.这是我的实现:
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);
标签:c,decimal,net-core,net-standard 来源: https://codeday.me/bug/20190527/1163539.html