Not even i can believe that there is a really expert programer
@RetroTomEquinoxGD8 ай бұрын
Wow dude really thanks for helping me
@Domino2712 Жыл бұрын
man muss ohne video studiren gefühlt
@ROMSZLA2 Жыл бұрын
for 8 this also will work : if (getX() < 50) { heading(45); } else if (noWorm()) { heading(315); } else if (getY() < 50) { heading(135); } else { heading(45); }
@leesimp2790 Жыл бұрын
change else to 180 and it work
@riotejo11 ай бұрын
9 lines solution for 10: if (getX() < 50 && getY() < 80 && noWorm()) { heading(75); } else if (getX() < 80 && noWorm()) { heading(315); } else if (getX() > 40 && getY() < 90) { heading(120); } else if (getX() > 20) { heading(255); }
@JogadorMm1-lj6lm7 ай бұрын
Tabem fiz algo diferente que não ficou exatamente assim mais também funciona e é curta: If (noWorm( ) && getX( ) < 40 && getY( ) < 85) { heading(75); } else if (noWorm( ) && getX( ) < 80) { heading(325); } else if (getX( ) > 37 && getY( ) < 98) { heading (135); } else { heading(260); }
@heliomedeirosjunior61482 жыл бұрын
Valeu me achudou a sera
@HarishKumar-ft3kf9 ай бұрын
Aaj nahin a Rahi
@HarishKumar-ft3kf9 ай бұрын
Class 3
@riotejo11 ай бұрын
another solution for 8: if (getX() > 50 && noWorm()) { heading(315); } else if (getX() > 50 && getY() < 50) { heading(135); } else { heading(45); }