I am trying to solve the problem (2.4.1, SolveTheMaze) but for some reason, the robot doesn't stop when he's on a beeper - he just keeps going. It seems like I have created an infinite loop. Here's a picture of the problem:
Here is the code:
void solveTheMaze()
{
while (!onBeeper())
{
CrossABarrier();
}
}
void CrossABarrier()
{
while (frontIsClear())
{
moveForward();
if (frontIsClear() && leftIsClear())
{
turnLeft();
}
rightOrleftNotClear();
while (!frontIsClear())
{
turnLeft();
}
}
}
void rightOrleftNotClear()
{
if (!frontIsClear() && !leftIsClear())
{
turnRight();
}
else if (!frontIsClear() && !rightIsClear())
{
turnLeft();
}
}
here my solution. Not realy smart but it works :)