gpt4 book ai didi

c - 如何将 float 舍入为 int?

转载 作者:行者123 更新时间:2023-11-30 18:21:54 24 4
gpt4 key购买 nike

假设我有:

55.3 and want 55
55.6 and want 56
81.1 and want 81
etc.

我一直在尝试使用round()函数,但它似乎一直给我所有小数位的最高值。

最佳答案

OP 尚未发布失败的代码。某些 OP 编码不正确。

使用round()是舍入 double正确方法在转换为 int 之前。当然必须在范围内。

#include <math.h>
#include <assert.h>

int round_to_int(double x) {
x = round(x);
assert(x >= INT_MIN);
assert(x < (INT_MAX/2 + 1)*2.0);
return (int) x;
}

参见How to test for lossless double / integer conversion?有关 assert() 的详细信息s。

为什么不使用 (int)(x + 0.5);

1)负数失败。

2) double 可能会失败略小于0.5作为x + 0.5可以四舍五入为1.0 .

3) 当精度为int时超过double ,最低有效位为 0.5 或 1.0 的值,x+0.5可能舍入到下一个整数。

4) 朴实无华,没有范围检查。

关于c - 如何将 float 舍入为 int?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34124737/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com