Quote (carteblanche @ Nov 3 2013 10:38pm)
void rectangleBody(int width, int height){
// add your logic here. to print to console, use:
System.out.print("x");
}
My issue i've been having is the actual logic itself. I've got to the point where if i do rectangleBody(9, 10); i get 90 # symbols going either in a single line or 1 per line covering 90 lines.
I appreciate your answer, but my problem is that i cant figure out the logic needed to make rectangleBody(9,10) give me 10 lines each with 9 # symbols in it.
I've done some searching on methods with multiple parameters, and read through a java textbook i have but cant seem to figure this code out =(