这么玩不是更简单~~~

来源:2-6 Java 中的 StringBuilder 类的常用方法

精慕门7595355

2019-07-10 16:10

int temp=str.length();

while(temp/3!=0){

    str.insert(temp-3,",");

    temp-=3;

}

写回答 关注

3回答

  • qq_正直者_0
    2020-01-16 19:26:20

    索引0 处也是可以插入的呀,

  • 慕码人8582911
    2019-10-06 15:30:16

    int length = str.length();
      我跟你一样hhh

    int a = length-3;
      while(a > 0){
       str.insert(a, ",");
       a = a-3;
      }

  • 慕无忌2973292
    2019-07-11 17:45:44

    参考答案好

Java入门第三季

Java中你必须懂得常用技能,不容错过的精彩,快来加入吧

409792 学习 · 4340 问题

查看课程

相似问题