Question: Your job is to write a recursive method that prints a large diamond made of small stars (). The size of the diamond will

Your job is to write a recursive method that prints a large diamond made of small stars (""). The size of the diamond will be determined from the maximum width of the diamond, which is given in the input file and is guaranteed to be odd. Example for a diamond with max width of n = 7: * * ***Hint: you CAN use a for loop to draw one, single row of the diamond. But you need recursion to call the method on the "smaller" version of the problem.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
