I'm learning Java the classic way — by playing around with Karel.
But I seem to have encountered a simple problem I can't solve even with the help of Google.
I'm getting an error in Eclipse saying there's a syntax error on the token "else", and that I should delete it.
How come? The syntax in the code block above the else statement is identical.
Here's my code:
public void run() {
putBeeper();
if(beepersPresent()){
move();
} while(frontIsClear()){
move();
putBeeper();
} else if(facingEast()){
turnLeft();
move();
}
}
Your
else
matcheswhile
, notif
. Not entirely clear what you are trying to do there.