ROBO deve raggiungere la macchia scura in alto a destra utilizzando le strisce bianche come guide.
- ROBO Exercise Set 1 > 6 Jump over from line to line
Per percorrere la 1° striscia bianca
1 2 3 4 5 6 7 8 9 |
STRISCIA procedure STRISCIA { repeatWhile(frontIsWhite) { forward(1) } } |
Per saltare alla prossima striscia
1 2 3 |
right forward(1) left |
Prova il codice seguente
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
# map: verticalLines1.map repeat { STRISCIA if(frontIsBlack) { forward(1) end } else { right forward(1) left } } procedure STRISCIA { repeatWhile(frontIsWhite) { forward(1) } } |