参见英文答案 >
Rounding Number to 2 Decimal Places in C15个
让我知道如何在Objective-C中舍入2位小数的十进制.
让我知道如何在Objective-C中舍入2位小数的十进制.
我想这样做.
(以下所有数字都是浮点值)
•圆
10.118 => 10.12
10.114 => 10.11
•ceil
10.118 => 10.12
•地板
10.114 => 10.11
感谢您检查我的问题.
解决方法
如果您确实需要编号进行四舍五入,而不仅仅是在呈现时:
float roundToN(float num,int decimals) { int tenpow = 1; for (; decimals; tenpow *= 10,decimals--); return round(tenpow * num) / tenpow; }
或者总是到小数点后两位:
float roundToTwo(float num) { return round(100 * num) / 100; }