I am supposed to use this method
public static void drawIndentedLine (int spaces, String begin, int n, String middle, String end)
This is what I am suppsed to do
It should print a single line, terminated with a newline, that begins with the specified number of spaces, followed by the begin string, followed by n copies of the middle string, followed by the end string.
Am I doing the right thing for my ouput by using system.out.println ?
"______________"
" ___________"
" _________"