如何转换小数点?

发布于 2024-08-22 21:31:40 字数 303 浏览 5 评论 0原文

可能的重复:
c# - 如何将小数值四舍五入到小数点后两位(用于在页面上输出)

我的值为 1.564 和 1.565 我需要将此值四舍五入到 1.56 和 1.56,哪个函数适合此在 c# 中。

Possible Duplicate:
c# - How do I round a decimal value to 2 decimal places (for output on a page)

i have value of 1.564 and 1.565 i need round this value to 1.56 and 1.56,which function suitable for this in c#.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

稍尽春風 2024-08-29 21:31:40

先乘以 100,然后进行下取整,然后除以 100。我确信有更好的方法

Math.floor(n*100)/100

do a multiply by 100 followed by a floor and followed by a divide by hundred. I am sure that there is a better way of doing it though

Math.floor(n*100)/100
偷得浮生 2024-08-29 21:31:40

删除较低有效数字 (1.348 -> 1.34):

Math.Floor(number * 100) / 100;

将数字四舍五入到小数点后两位:

Math.Round(number, 2);

将其表示为字符串以供显示:

number.ToString("#.00");

To remove the less significant digits (1.348 -> 1.34):

Math.Floor(number * 100) / 100;

To round the number to two decimals:

Math.Round(number, 2);

To represent it as a string, for display:

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