标签: java rounding
我试图返回一个双倍,以便它向上舍入到十分之一。我有:
roundedTemp = (double)Math.round(tempNum *10)/10; return roundedTemp;
我做错了什么?我把它恢复到小数点后两位......
答案 0 :(得分:0)
使用DecimalFormat。
DecimalFormat df = new DecimalFormat("#.#");