Answers for "round off two decimal places"

3

round number at 2 decimal places

Math.round(num * 100) / 100
Posted by: Guest on March-17-2021
0

Round a float two decimal points

>>> print("{:.2f}".format(a))
13.95
Posted by: Guest on May-27-2021
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 "round off two decimal places"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language