Return statements in methods
Edit** = so I figured out the return method, but how can I create a grid that expands with the int that I place in the method?
So, I have to create a method that will take a picture and, using nested loops, depending on the variable placed in the method will be the size of the grid.
so...
public Picture makeGrid(int size)
{
code
}
so... if I put 2 in there it will copy the picture over so it will be a 2x2 grid of that picture and there will be 4 copies of the image.
I am having trouble with my return statement, I don't know what to put as a return statement after all of this.