Rounding a double value to x number of decimal places in swift

前端 未结 28 2599
日久生厌
日久生厌 2020-11-22 06:11

Can anyone tell me how to round a double value to x number of decimal places in Swift?

I have:

var totalWorkTimeInHours = (totalWorkTime/60/60)
         


        
28条回答
  •  再見小時候
    2020-11-22 06:33

    Not Swift but I'm sure you get the idea.

    pow10np = pow(10,num_places);
    val = round(val*pow10np) / pow10np;
    

提交回复
热议问题