| Author |
How to read random cells from the Array of 2 dimentional.
|
murali kankanala
Ranch Hand
Joined: Nov 15, 2004
Posts: 110
|
|
Hi folks,
I have a typical requirement where i need to read the 2 dimentional array values.
For ex:
I have an array int[][] rand = new int[6][4];
Assume i already inserted value in all the 24 cells.
While reading i want to read all the cell values randomly.
Is there any mechanism that works like Random() for arrays.
thanks in advance.
Murali
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19232
|
|
|
How about just creating two random numbers, one between 0 and 6 and one between 0 and 4.
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
 |
|
|
subject: How to read random cells from the Array of 2 dimentional.
|
|
|