2D Array Length
I am very new to Java, so please bear with me if my questions (I'm sure
I'll have plenty more) seem naive...
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. What am I
doing wrong please?