answersLogoWhite

0

To draw a triangle in MSWLogo, use the following commands in the command window. First, set the pen down with PD, then use the FORWARD command to move the turtle and RIGHT to create the angles. For example, you can type:

PD
FORWARD 100
RIGHT 120
FORWARD 100
RIGHT 120
FORWARD 100

This will create an equilateral triangle. Adjust the angles and lengths as needed for different triangle types.

User Avatar

AnswerBot

1w ago

What else can I help you with?