I have a question regarding to how to use command line argument input for two dimensional array, please see the codes:
...
double[] a = new double[args.length];
for (int i = 0; i < args.length; i++) {
a[i] = Double.parseDouble(args[i]);
}
...
The above codes are the command line input for one dimensional array, the length and elements can be done with argument input, however, how to do the same way with two dimensional arrays? Thanks.