Answer:
Step-by-step explanation:
The following code is written in Python and prompts the user for the height of the rectangle and finally loops through to create it
def makeRectangle(height):
height = int(input("What is the height of the Rectangle?"))
print("**********")
for x in range(height-2):
print("* *")
print("**********")