Answers for "round of double to 2 floating digits"

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 "TypeScript"

Browse Popular Code Answers by Language