最佳答案
例如,我只能用 String 来做这件事:
String str="";
for(int i=0;i<100;i++){
str=i+str;
}
有没有一种使用 StringBuilder 实现这一点的方法? 谢谢。