有没有办法在 c++ 中向下舍入 float 类型?
如何向下舍入 float 类型变量? (使用 printf
)
for example,
float x = 3.35;
printf("%.1f", x);
在这种情况下,它将打印出 3.4,但我希望它打印 3.3。
有什么办法可以做到吗? (不使用 trunc
或 floor
函数)
How could I round down float type variable? (using printf
)
for example,
float x = 3.35;
printf("%.1f", x);
In this situation, it will print out 3.4 but i want it to print 3.3.
Is there any way to do it? (without using trunc
or floor
function)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,您无法更改
printf
的舍入模式。它是实现定义的。No, you can't change the rounding mode of
printf
. It's implementation-defined.