(Displaying a Square of Any Character) Modify the method created in Exercise to receive a second parameter of type char called fillCharacter. Form the square using the char provided as an argument. Thus, if side is 5 and fillCharacter is #, the method should display
#####
#####
#####
#####
#####
Use the following statement (in which i nput is a Scanner object) to read a character from the user at the keyboard:
char fill = input.next().charAt(0);
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.