Problem with &&
in
Programming Questions
•
1 year ago
Whenever I try to use this:
if ((x > 0) && (x < 67)) && ((y > 0) && (y < 38)) {
int imageIndex = 000;
(images[imageIndex], 0, 0);
}
I get the following error:
unexpected token: &&
Can anyone tell me what I'm doing wrong please?
Thanks in advance.
if ((x > 0) && (x < 67)) && ((y > 0) && (y < 38)) {
int imageIndex = 000;
(images[imageIndex], 0, 0);
}
I get the following error:
unexpected token: &&
Can anyone tell me what I'm doing wrong please?
Thanks in advance.
1