2014-03-27 73 views

回答

0

你應該嘗試DecimalFormat。使用0.00模式指定前導零和尾隨零,因爲使用了0字符而不是井號(#)。

x = Math.pow(i, j); 
//System.out.format("two decimal places is: %.2f", x); 

DecimalFormat decimalFormat = new DecimalFormat("0.00"); 
System.out.println("two decimal places is: " + decimalFormat.format(x)); 

但在評論部分中提到,嘗試後我們確切的控制檯輸出,它可以幫助我們弄清楚爲什麼你的代碼,它不工作。