四舍五入到最接近的整数
我已经搜索了很长一段时间,似乎找不到任何关于此的信息。如何将数字向上舍入到最接近的整数?我使用数组中的对象数量并将其除以 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请务必对要舍入的数字进行强制转换:
否则整数算术将被截断。
Be sure to cast the number you're rounding:
Otherwise integer arithmetic will truncate.
ceil() 函数就是您正在寻找的。
ceil() function is what you are looking for.