I could only do this with String, for example:
String str=\"\"; for(int i=0;i<100;i++){ str=i+str; }
Is there a way to achieve this wit
you can use strbuilder.insert(0,i);
strbuilder.insert(0,i);