Objective-C 中的双数四舍五入

发布于 2024-11-06 21:39:38 字数 286 浏览 0 评论 0原文

我需要 C 代码将双精度值舍入到下一个最大整数值。

例如,如果我有:

1.0 (double) 它必须是 1 (int)
1.01(双精度)它必须是2(int)
5.67(双精度) 它必须是 6(int)
76.43 (double) 一定是 77 (int)

有解决办法吗?

I need C code for rounding up a double value to the next greatest integer value.

For example, if I have:

1.0 (double) it must be 1 (int)
1.01 (double) it must be 2 (int)
5.67 (double) it must be 6 (int)
76.43 (double) it must be 77 (int)

Is there a solution?

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

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

发布评论

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

评论(2

不知所踪 2024-11-13 21:39:38

使用 ceil() 函数 < code>

#include <math.h>

double x = 1.01;     // x = 1.01
double y = ceil(x);  // y = 2.0
int i = (int)y;      // i = 2

或更简洁地说,如果您只想要 int 结果:

int i = (int)ceil(x);

Use the ceil() function from <math.h>:

#include <math.h>

double x = 1.01;     // x = 1.01
double y = ceil(x);  // y = 2.0
int i = (int)y;      // i = 2

or more concisely, if you just want the int result:

int i = (int)ceil(x);
凯凯我们等你回来 2024-11-13 21:39:38

假设您的浮点数是nr
无内置函数:

float nr;
int temp;
if (nr % 10 > 0) {
    temp = nr++;
} else {
    temp = nr;
}
nr = temp;

Let's say your float number is nr.
No build-in functions:

float nr;
int temp;
if (nr % 10 > 0) {
    temp = nr++;
} else {
    temp = nr;
}
nr = temp;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文