有效数字四舍五入
在 iPhone 的 Xcode /Objective-C 中。
我有一个值为 0.00004876544 的浮点数。如何让它在第一个有效数字之后显示到小数点后两位?
例如,0.00004876544 将读取为 0.000049。
In Xcode /Objective-C for the iPhone.
I have a float with the value 0.00004876544. How would I get it to display to two decimal places after the first significant number?
For example, 0.00004876544 would read 0.000049.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我没有通过编译器运行它来仔细检查它,但这是算法的基本要点(从答案转换为 这个问题):
要记住的重要一点是 Objective-C 是 C 的超集,因此任何在 C 中有效的东西在 Objective-C 中也有效 - C.此方法使用
math.h
中定义的 C 函数。I didn't run this through a compiler to double-check it, but here's the basic jist of the algorithm (converted from the answer to this question):
The important thing to remember is that Objective-C is a superset of C, so anything that is valid in C is also valid in Objective-C. This method uses C functions defined in
math.h
.