/* Write a Java program to print a square of '#'s. In the main method, read in an integer. Pass this as an argument to a method called "print". Print the required square here Sample Run: Enter the number of #'s in a side: 4 # # # # # # # # # # # # # # # # */ import java.util.Scanner; class Quiz10_19 { //print function. Doesn't return anything. So, return type is void. // Takes 1 parameter, of integer type public static void print(int size) { for(int i=0; i