我認爲我的算法出了問題,我試圖將我的 數字150000拆分爲數千個for循環。我想要輸出爲150,000。 我只是有麻煩提出一個很好的方式做到這一點。關於將數字拆分爲數千
這裏是我的代碼:
public class testing {
public static void main(String[] args) {
// TODO Auto-generated method stub
String l= "150000";
for(int i=l.length();i<0;i--){
if ((i/4)==0){
l=","+l.substring(i, l.length()-1);
}
}
System.out.println(l);
}
}
http://stackoverflow.com/a/3672738/1897935 –
您是否必須手動執行此操作,或者可以使用可用的工具嗎? – Pshemo
可能的重複[如何格式化一個字符串數字以逗號和舍入?](http://stackoverflow.com/questions/3672731/how-can-i-format-a-string-number-to-have-逗號和輪) – kdopen