SyntaxFix
Write A Post
Hire A Developer
Questions
Maybe I'm missing something but you want to wind up with a String that looks like this, "999897969594...543210", correct?
"999897969594...543210"
StringBuilder sb = new StringBuilder(); for(int i=99;i>=0;i--){ sb.append(String.valueOf(i)); }