兩種保留小數位,四捨五入的方法

  /** * 保留小數位,四捨五入 */ public static void main(String[] args) { //Math.round保留兩位小數 double num1 = 10.123456; num1 = Math.round(num1 * 100)/100.0; System.out.println(num1);//10.12 //BigDec
相關文章
相關標籤/搜索