俗話說好記性不如爛筆頭,故記之。
DecimalFormat decimalFormat = new DecimalFormat("##.00%"); System.out.println(decimalFormat.format(1 / 3.0)); System.out.println("========================================="); NumberFormat nt = NumberFormat.getPercentInstance(); nt.setMinimumFractionDigits(2); System.out.println("百分數:" + nt.format(1.0 / 3));
