View Single Post
Old Apr 28th, 2005, 1:03 AM   #6
You Like Java?
Newbie
 
You Like Java?'s Avatar
 
Join Date: Mar 2005
Location: aboho.com (sn:eyvind)
Posts: 20
Rep Power: 0 You Like Java? is on a distinguished road
Send a message via AIM to You Like Java? Send a message via MSN to You Like Java? Send a message via Yahoo to You Like Java?
public class LikeThis
{
   public static void main(String[] args)
   {
	 //example data
	 int[][] array = new int[5][10];
	 double value = 23.5;
 
	 /*
	 create the Random object with the
	 time in miliseconds as the seed
	 */
	 long seed = new Date().getTime();
	 Random randNumGen = new Radnom(seed);
 
	 //get the coordinates
	 int x = randNumGen.nextInt(5);
	 int y = randNumGen.nextInt(10);
 
	 //access and modify the array
	 array[x][y] = value;
   }
}
__________________
If you need help with Java, you can go to javaforum.tk and get answers quickly.

Programmer YouLikeJava = new JavaProgrammer("Eyvind");
YouLikeJava.printInfo();
YouLikeJava.setWeb("You Like Java?");
You Like Java? is offline   Reply With Quote