Question: Draw a X with arraylist We are going to create a method that fills a 2-dimensional char array with a pattern that will print an

We are going to create a method that fills a 2-dimensional char array with a pattern that will print an "X". Starter Code * A class that generates a 2-D char array representing an 'X' *
Purdue University -- CS18800 -- Spring 2021
* @author Purdue cs * @version January 19, 2021 public class Drawx private int size; public Drawx (int size) { this.size = size; > public chart generateArray) char 11 11 xArray = new char[sizel [size]; // TODO return xArray: Test 1 (size = 3) 1 [ * ] . Test 2 (size = 5) [*, (, Test 3 (size = 10) [*, [*, + F Test the program with other sizes. Does it work as expected? If so, you're
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
