My output looks like this
000(05.00) *|
001(25.00) ******|
002(36.00) **********|
Ideally I would like my output to be this....
000(05.00) * |
001(25.00) ****** |
002(36.00) **********|
I have this as my variable...
private static String MAX_REP = "|";
What can I do to MAX_REP to print that bar for every line at that same spot?