![]() |
2D Arrays
Declare a 2 dimentional array to store the x co-ordinates of every left mouse click (lmb),
then when array is full print out all the stored values on the screen in a 10x10 matrix. do i have it right so for and i cant work out this last part plz help :) this is what i have so far Code:
import java.awt.*; |
Re: 2D Arrays
fist of all it is not eles but else
and int[][] lmb=new int[10][10]; where to you declare counter variable? |
Re: 2D Arrays
Well sorry im still a noob to this java thing lol
initialise d1, d2 to 0 declare lmb array[10][10] WHEN left mouse is clicked IF(d2<9) add 1 to d2 ELSE set d2 to 0 add 1 to d1 IF(d1<9) set lmb[d1][d2] to x-coordinate of mouse event ELSE print out all the stored values |
| All times are GMT +5.5. The time now is 04:21. |