Question: Hi, I am using NetBeans IDE 8.2 program. Using the LoopShape.java. If you could please answer the question above. And if possible add a screenshot

Hi, I am using NetBeans IDE 8.2 program. Using the LoopShape.java. If you could please answer the question above. And if possible add a screenshot of the ran solution, so I could know how the code solution will look like. I would really appreciate it.
Thank you very much
Overview Using text to create a picture is known as ASCIl art. In section 2, we made an ASCI art cat. This required us to type every character in the art we wanted to create. In this practice, you'll find a way to draw basic shapes programmatically in customizable sizes 5x4 Rectangle Task Complete the following two methods in LoopShape.java: createRectangle (): This method accepts two arguments for width and height which should be used to print a rectangle createTriangle (): This method accepts one argument for the size of a leg, which should be used to print an isosceles right triangle . Try changing the value of the arguments you're supplying these two methods from the main method. Make sure your program can successfully draw each shape to a custom size. Additionally, your program must Refuse to draw shapes with any dimension less than 1 Be able to draw shapes with any dimension equal to 1 (a 1x1 shape should print just a single character) . . If the problem seems difficult, remember to break it into smaller challenges such as characters wide? ", but has a variable number of spaces in How do I print a single line that is a variable number of " How do i create a String that begins and ends with a between? . Finishing each smaller challenge is an accomplishment. This problem is as much about understanding loops as it's about understanding how to break a big problem into smaller tasks. The knowledge you've gained in this section on loops will be very helpfl in completing this program. You're free to use whichever type of loop statements you feel would be best. You'll also need to remember a few concepts from previous sections
Step by Step Solution
There are 3 Steps involved in it
To solve this problem you need to write a program in Java that draws shapes using loops Here is a sa... View full answer
Get step-by-step solutions from verified subject matter experts
