有没有办法在 c++ 中向下舍入 float 类型?

发布于 2025-01-15 19:46:50 字数 229 浏览 0 评论 0原文

如何向下舍入 float 类型变量? (使用 printf

for example,  
float x = 3.35;  
printf("%.1f", x);

在这种情况下,它将打印出 3.4,但我希望它打印 3.3。
有什么办法可以做到吗? (不使用 truncfloor 函数)

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 技术交流群。

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

发布评论

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

评论(1

新雨望断虹 2025-01-22 19:46:50

不,您无法更改 printf 的舍入模式。它是实现定义的。

No, you can't change the rounding mode of printf. It's implementation-defined.

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