for循环该怎么遍历啊?
for(int i = 3 ; i < str.length() ; i =i + 4){
str.insert(i, ",");
}
for(int i=3;i<str.length;i=i+3)
{
str.insert(i,",");