Answers:
这里有一些例子:
decimal a = 1.994444M;
Math.Round(a, 2); //returns 1.99
decimal b = 1.995555M;
Math.Round(b, 2); //returns 2.00
您可能还想看看具有以下重载的银行家四舍五入/四舍五入:
Math.Round(a, 2, MidpointRounding.ToEven);
有一个关于它的更多信息在这里。
0.005
在四舍五入之前将数字。同样舍入,0.005
在传递给Math.Round
函数之前先减去。
MidPointRounding.ToEven
(也称为“银行家四舍五入”)的原因是因为我们都学会了在.5向上舍入的学校中进行舍入导致太多的舍入。在处理货币,税款计算等问题时,这是一个问题
我个人从来没有四舍五入。尽可能保持坚决,因为无论如何,舍入在CS中都是一个红色的鲱鱼。但是您确实想为用户格式化数据,为此,我发现这string.Format("{0:0.00}", number)
是一个很好的方法。
总体而言,维基百科上有一个很好的四舍五入页面。
所有.NET(托管)语言都可以使用任何公共语言运行时(CLR)舍入机制。例如,Math.Round()(如上所述)方法允许开发人员指定舍入类型(四舍五入或零舍入)。Convert.ToInt32()方法及其变体使用round-to-even。该天花板()和地面()方法是相关的。
您也可以采用自定义数字格式。
注意Decimal.Round()使用的方法与Math.Round()不同;
//最多转换两位小数
String.Format("{0:0.00}", 140.6767554); // "140.67"
String.Format("{0:0.00}", 140.1); // "140.10"
String.Format("{0:0.00}", 140); // "140.00"
Double d = 140.6767554;
Double dc = Math.Round((Double)d, 2); // 140.67
decimal d = 140.6767554M;
decimal dc = Math.Round(d, 2); // 140.67
=========
// just two decimal places
String.Format("{0:0.##}", 123.4567); // "123.46"
String.Format("{0:0.##}", 123.4); // "123.4"
String.Format("{0:0.##}", 123.0); // "123"
也可以将“ 0”与“#”组合在一起。
String.Format("{0:0.0#}", 123.4567) // "123.46"
String.Format("{0:0.0#}", 123.4) // "123.4"
String.Format("{0:0.0#}", 123.0) // "123.0"
如果要四舍五入,可以根据以下方式获得不同的结果:使用Math.Round()函数的方式(如果是向上舍入或向下舍入),则使用双精度和/或浮点数,然后应用中点舍入。特别是,在其内部使用操作或要舍入的变量来自操作时。假设您要将这两个数字相乘:0.75 * 0.95 = 0.7125。对?不在C#中
让我们看看如果要四舍五入到小数点后第三位会发生什么:
double result = 0.75d * 0.95d; // result = 0.71249999999999991
double result = 0.75f * 0.95f; // result = 0.71249997615814209
result = Math.Round(result, 3, MidpointRounding.ToEven); // result = 0.712. Ok
result = Math.Round(result, 3, MidpointRounding.AwayFromZero); // result = 0.712. Should be 0.713
如您所见,如果要舍入中点,则第一个Round()是正确的。但是第二轮Round(),如果您想四舍五入是错误的。
这适用于负数:
double result = -0.75 * 0.95; //result = -0.71249999999999991
result = Math.Round(result, 3, MidpointRounding.ToEven); // result = -0.712. Ok
result = Math.Round(result, 3, MidpointRounding.AwayFromZero); // result = -0.712. Should be -0.713
因此,恕我直言,您应该为Math.Round()创建适合您需求的包装函数。我创建了一个函数,参数'roundUp = true'表示舍入到下一个更大的数字。即:0.7125舍入为0.713,-0.7125舍入为-0.712(因为-0.712> -0.713)。这是我创建的函数,适用于任意数量的小数:
double Redondea(double value, int precision, bool roundUp = true)
{
if ((decimal)value == 0.0m)
return 0.0;
double corrector = 1 / Math.Pow(10, precision + 2);
if ((decimal)value < 0.0m)
{
if (roundUp)
return Math.Round(value, precision, MidpointRounding.ToEven);
else
return Math.Round(value - corrector, precision, MidpointRounding.AwayFromZero);
}
else
{
if (roundUp)
return Math.Round(value + corrector, precision, MidpointRounding.AwayFromZero);
else
return Math.Round(value, precision, MidpointRounding.ToEven);
}
}
变量“校正器”用于修正浮点数或双数运算的不准确性。
您可能要检查的一件事是Math.Round的舍入机制:
http://msdn.microsoft.com/zh-CN/library/system.midpointrounding.aspx
除此之外,我建议在* 100/100上使用Math.Round(inputNumer,numberOfPlaces)方法,因为它更干净。
字符串a =“ 10.65678”;
十进制d = Math.Round(Convert.ToDouble(a.ToString()),2)
发生一种奇怪的情况,我有一个十进制变量,在序列化55.50时,它总是在数学上始终将默认值设置为55.5。但是,由于某些原因,我们的客户系统严重期望55.50,因此他们肯定期望十进制。多数民众赞成在我编写下面的帮助程序时,该帮助程序始终将填充的任何十进制值转换为带有零的2位,而不是发送字符串。
public static class DecimalExtensions
{
public static decimal WithTwoDecimalPoints(this decimal val)
{
return decimal.Parse(val.ToString("0.00"));
}
}
用法应该是
var sampleDecimalValueV1 = 2.5m;
Console.WriteLine(sampleDecimalValueV1.WithTwoDecimalPoints());
decimal sampleDecimalValueV1 = 2;
Console.WriteLine(sampleDecimalValueV1.WithTwoDecimalPoints());
输出:
2.50
2.00