如何转换小数点?
我的值为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
先乘以 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
删除较低有效数字 (1.348 -> 1.34):
将数字四舍五入到小数点后两位:
将其表示为字符串以供显示:
To remove the less significant digits (1.348 -> 1.34):
To round the number to two decimals:
To represent it as a string, for display: