> Is it possible to create different arrays from standard input? java?

Is it possible to create different arrays from standard input? java?

Posted at: 2014-12-18 
x. if i input 3 then it will create 3 arrays.. array1 [], array2[], array 3[]

Create a 2D Array (an array of arrays).

Say n has the user input, and you want each array to be of type int, with 10 elements:

int [][] array = new int[n][10];

Then, instead of array1 [], array2[], array 3[], you would access them as:

array[0], array[1], array[2].

yes

ex. if i input 3 then it will create 3 arrays.. array1 [], array2[], array 3[]