Hello,
I'm doing a project in java and im not able to assign the values which are got from for loop to the 2-dimensional array.
Can anyone tell me how to assign the values and print them?
the code is:
How will i assign s and t values to temp array?
Thanks in anticipation... ....
I'm doing a project in java and im not able to assign the values which are got from for loop to the 2-dimensional array.
Can anyone tell me how to assign the values and print them?
the code is:
Code:
gr.getGridArray(); for (int s=0;s<=NoOfElevations;s++) for (int t=0;t<=NoOfElevations;t++) { temp[][] = ; System.out.println("values are " + temp[s][t]); } }
Thanks in anticipation... ....
Comment