1.如果你用System.out.printf("%g\n",ans);就會發現輸出結果與C的printf不太一樣。
2.改用DecimalFormat=>DecimalFormat formatter = new DecimalFormat();
3.System.out.println(formatter.format(ans).toString().replaceAll(",", ""));
4.replaceAll是為了將逗號去除掉。