标签: java
how to round off the BMI value to 2/3 decimal place?
答案 0 :(得分:0)
使用DecimalFormatter格式化要显示的小数点数。
DecimalFormat decimalFormat = new DecimalFormat("#.00"); decimalFormat.format(bmi);