Run through the names and get the length of the longest name. When you print each name add the number of
spaces = longestNameLength - thisNameLength + whateverExtra;
after the name and before printing the score. You can make up a method to return the spaces
private int space(int n) {
for(int j = 0; j < n; j++)
s += " ";
return s;
}