Print Square: Write a method called printsquare that takes in two integer parameters, min and max, and prints the numbers in the range from min to max.
a) Function printsquare(min, max)
b) def printsquare(min, max):
c) void printsquare(int min, int max)
d) printsquare(min, max) {}