In xcode /objective c for the iphone
I have a float with the value 0.00004876544 how would i get it to display to 2 decimal places after the 1st significant number E.g. 0.00004876544 would read 0.000049?
any help would be appreciated
|
In xcode /objective c for the iphone I have a float with the value 0.00004876544 how would i get it to display to 2 decimal places after the 1st significant number E.g. 0.00004876544 would read 0.000049? any help would be appreciated
| |||||||||||||||
feedback
|
|
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 | |||
|
feedback
|