Thread: Problem in java
View Single Post
  #2 (permalink)  
Old 01-15-2008, 04:10 AM
roots's Avatar
roots roots is offline
Moderator
 
Join Date: Jan 2008
Location: Dallas
Posts: 263
roots is on a distinguished road
Code:
// Instead of :: out.write(" "); // i .. out.write(getSpace(20- text.length())); // Here 20 is max length possible change accordingly ... public static String getSpace(int length){ String str = ""; for(int i = 0 ; i < length ; i++ ){ str = str + " " ; } return str ; }
Should align the score ..
__________________
dont worry newbie, we got you covered.
Reply With Quote