如何在 .NET 中将双精度值舍入为选定的小数位数?

发布于 2024-07-16 04:24:28 字数 127 浏览 4 评论 0原文

我使用加速度传感器来计算当前加速度,它返回双精度值。

不过我想将当前加速度与值 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

多情癖 2024-07-23 04:24:28

Math.Round - 即

double val = Math.Round(current, 1); // 1dp

Math.Round - i.e.

double val = Math.Round(current, 1); // 1dp
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文