4.1 Draw a 360 sided polygon

Scratch solution

View solution

This is just one of many possible solutions:

when green flag clicked
clear
go to x: (0) y: (0)
pen down
repeat (360)
  move (1) steps
  turn cw (1) degrees
end
pen up

Back to programming challenge