I would like to create a 2D array but get the row and column value from an integer, example;
Integer Col = 8;
Integer Row = 200;
String[][] list;
list = new String [Row][Col];
Of course, this is not compling. Im getting a Type mismatch: cannot convert from int to String error but I am not trying to convert an int to a String, I just want the Integer value to set the array length.