Java Project 3: ProgrammaticASCII Art
Overview
Using text to create a picture isknown as ASCII art. This required us to type every character in theart we wanted to create. In this practice, you’ll find a way todraw basic shapes programmatically in customizable sizes. Forexample:
Task
Complete the following two methods inLoopShape.java:
- createRectangle(): This method accepts twoarguments for width and height which should be used to print arectangle
- createTriangle(): This method accepts oneargument for the size of a
OROR