как округлить 47,3476 до 47,35 в kotlin
val num = 47.3476 val df = DecimalFormat("#.##")//set decimal format here df.roundingMode = RoundingMode.CEILING println(df.format(num)) //47.35