Valid java code
Posted: Fri Dec 19, 2008 9:39 pm
This is a pretty stupid question but a equation example: (1 = 1) returns 1 or 0 right so why would this not work?:
This code calculates right and left dir so i can use after this the code:
if I use the first code, it says
Code: Select all
int right = dir + 1 - 4(dir = 4);
int left = dir - 1 + 4(dir = 0);
Code: Select all
public static int[][] offsets = { { 1, 0 }, { 0, -1 }, { -1, 0 }, { 0, 1 } };
int nx = x + offsets[dir][0];
int ny = y + offsets[dir][1];
int nxr = x + offsets[right][0];
int nyr = y + offsets[right][1];
int nxl = x + offsets[left][0];
int nyl = y + offsets[left][1];
Code: Select all
";" expected[code]
why does he ask that