How do I list the elements from a double[] Array. Here is my init and assignment.
final int nr=10;
double[] cArray= new double[100];
System.arraycopy(Global.ArrayAlpha, 0, cArray, Global.ArrayBeta.length, Global.ArrayAlpha.length);
for(int i=0;i< nr;i++){
System.println( cArray?????);
}
A simiple question, I know , but all attempts have been unsuccessful. The program is java and I get the following error when i use cArray.get(k)
Cannot invoke get(int) on the array type