Draw a 5-pointed star

Challenge Level: Growing experience

Learning outcomes

Students will be able to:

Requirement:

Write a program that draws a 5-pointed star (pentagram) with the length of each edge equal to 200 steps.

A 5 pointed star.

Testing examples:

There are no testing examples for this challenge.

Languages

Scratch

What it should look like

Click on the green flag to see the expected output of your program.

Recommended blocks
when green flag clicked
clear

set pen size to (3)

pen down

pen up
move (200) steps

turn cw ((180) - (36)) degrees
repeat (5)
end
Hints
  • The inside angles of a 5-pointed star are 36 degrees each.

Show Scratch solution