如何将浮点数四舍五入到 Objective-C 中的下一个整数值?

1.1 -> 2
2.3 -> 3
3.4 -> 4
3.5 -> 4
3.6 -> 4
1.0000000001 -> 2

最佳答案

你想要天花板功能。像这样使用:

float roundedup = ceil(otherfloat);

关于objective-c - 将浮点数向上舍入到 Objective-C 中的下一个整数?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8206291/

10-16 14:20