如何在 .NET 中将双精度值舍入为选定的小数位数?
我使用加速度传感器来计算当前加速度,它返回双精度值。
不过我想将当前加速度与值 9.8 进行比较。 在此之前,我必须对从传感器接收到的值进行四舍五入,因此问题是:如何将双精度值四舍五入到 .NET 中选定的小数位数?
I use an acceleration sensor to calculate the current accelerations and it returns the double value.
However I would like to compare the current acceleration with value 9.8. Before doing that i have to round the value received from the sensor so the question is: How to round a double value to a selected number of decimals in .NET?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Math.Round(数字, 精度)
http://msdn.microsoft.com/en -us/library/zy06z30k.aspx
Math.Round(number, precision)
http://msdn.microsoft.com/en-us/library/zy06z30k.aspx
Math.Round - 即
Math.Round - i.e.