四舍五入到最接近的整数

发布于 2024-11-24 04:12:57 字数 156 浏览 3 评论 0原文

我已经搜索了很长一段时间,似乎找不到任何关于此的信息。如何将数字向上舍入到最接近的整数?我使用数组中的对象数量并将其除以 3。假设 [数组计数] 为 10,我想得到 4 作为 10/3 的结果。或者 [数组计数] 是 23,而我想要得到 8。我该怎么做?提前致谢。

I've been searching for quite awhile and can't seem to find anything on this. How do I round a number up to the nearest whole number? I'm using the number of objects in an array and dividing it by 3. Say [array count] is 10, and I want to get a 4 as the result of 10/3. Or [array count] is 23, and I want to get an 8. How do I do this? Thanks in advance.

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

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

发布评论

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

评论(2

三岁铭 2024-12-01 04:12:57

请务必对要舍入的数字进行强制转换:

int roundedNumber = ceil((double)number/3);

否则整数算术将被截断。

Be sure to cast the number you're rounding:

int roundedNumber = ceil((double)number/3);

Otherwise integer arithmetic will truncate.

落墨 2024-12-01 04:12:57

ceil() 函数就是您正在寻找的。

ceil() function is what you are looking for.

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