Answers for "how to round Double to 2 digit decimals"

0

how to round Double to 2 digit decimals

import java.math.BigDecimal
import java.math.RoundingMode
val decimal = BigDecimal(3.14159265359).setScale(2, RoundingMode.HALF_EVEN)
println(decimal) // 3.14
Posted by: Guest on October-13-2021

Code answers related to "how to round Double to 2 digit decimals"

Browse Popular Code Answers by Language