目标 c 中的整数 105 或 95 到 100
我有一个整数值,需要对其进行四舍五入,该怎么做?
105将变成110 103 会是 100
那么经典的小数四舍五入吗?谢谢你!
I have integer value, and need to round it, how to do that?
105 will be 110
103 will be 100
so classical rounding for decimals? thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
再给你一个:
整数除法在 C 中总是截断,所以例如 3/4 = 0, 4/4 = 1。
One more for you:
Integer division always truncates in C, so e.g. 3/4 = 0, 4/4 = 1.
通过一般编程问题,我不知道确切的 Objective-C 语法。 C 风格:
不需要浮点计算。
I don't know the exact Objective-C syntax, byt general programming question. C-style:
No floating point calculations required.
解决这个问题的一种方法:
或者稍微修改一下:
One way to solve this:
Or slightly modified:
请参阅此处:Objective-C 中的舍入数字
您可以支持浮点数或将整数表示为浮动 (105.0)。
See here: Rounding numbers in Objective-C
You could support floats or express your ints as floats (105.0).