Nov 072016
- Log into j2e – j2code – LOGO
- Click on “Level 3”
- Type:
- reset
- setpensize 5
- fd 20
- Now press play – it should draw a short line (length 20)
- Try changing the 20 to other numbers and press play to see what happens.
- Now change your code to:
- fd 30
- rt 90
- fd 30
- lt 90
- Press play – you should get this:
- Now add this to your code:
- pu
setxy -200 50
pd
- pu
- Challenge 1: Make this shape by typing more instructions:
- Now add this to your code:
- pu
setxy 130 100
pd
- pu
- Challenge 2: Now make a square:
- Now add this to your code:
- pu
setxy -140 -140
pd
- pu
- Challenge 3:
- Now add this to your code:
- pu
setxy 140 – 140
pd
- pu
- Challenge 4:
Is there any way we could make our code simpler? Some of the algorithms repeat instructions.
Success steps:
- Copy instructions carefully
- Press play to run program
- Make instructions to draw simple shapes including forward, left and right
- Check instructions carefully for mistakes (bugs)