answersLogoWhite

0

What else can I help you with?

Related Questions

How do you draw a square using MSWlogo?

To draw a square using MSWLogo, you can use the REPEAT command to create the four equal sides. Enter the following commands in the command window: REPEAT 4 [FORWARD 100 RIGHT 90] This code instructs the turtle to move forward 100 units and then turn right by 90 degrees, repeating this process four times to complete the square. Adjust the number in FORWARD to change the size of the square.


How do you make a tree in mswlogo?

To make a tree in MSWLogo, you can use the "repeat" command to create the trunk and branches. Start by drawing a straight line for the trunk using the "fd" (forward) command. Then, use the "lt" (left) and "rt" (right) commands to create branches by changing the angle of the turtle. You can use the "repeat" command to create multiple branches, adjusting the angle and length each time. Finally, you can add leaves by drawing small circles or shapes at the end of each branch.


How do you draw a decagon with MSWLogo?

A decagon is a 10-sided polygon. To draw a regular decagon in MSWLogo, first create the following procedure: to decagon :n repeat 10 [fd :n rt 36] end Now invoke it: decagon 100 This creates a decagon with sides of length 100.


How do you make oval in mswlogo?

To draw an oval in MSWLogo, you can use the REPEAT command to create a series of small line segments that approximate the shape of an oval. For example, you can use a command like REPEAT 360 [FORWARD 1 RIGHT 1] to create a circular shape, and then adjust the horizontal and vertical scaling to create an oval effect. Alternatively, you can use the ARC command to draw a part of an oval by specifying the radius and angle.


Which structure should you use if you if you want to repeat the same commands exact 10 times?

repeat 10


How to text in MSWLogo?

no we can't


How do you make a smiley face in mswlogo?

To create a smiley face in MSWLogo, you can use a combination of drawing commands. First, draw a circle for the face using the REPEAT command to create a rounded shape. Next, use simple shapes like circles or lines to add eyes and a curved line for the smile. Here's a sample code snippet: ; Draw face REPEAT 36 [FORWARD 10 RIGHT 10] ; Position for eyes PENUP FORWARD 20 RIGHT 90 FORWARD 30 PENDOWN ; Draw eyes REPEAT 2 [CIRCLE 5 PENUP FORWARD 20 PENDOWN] ; Draw smile PENUP BACK 30 RIGHT 90 PENDOWN LEFT 90 FORWARD 10 RIGHT 90 REPEAT 18 [FORWARD 1 RIGHT 10] This will create a simple smiley face on the screen.


You want to do mswlogo in the computer?

yes


What is repeat loop?

Most programming languages have some loop construct, that make it possible to repeat commands several times. The available commands vary, depending on the language; as an example, Java has the "for", "while", and "do...while" keywords.


What is edall in mswlogo?

It is called "Edall" and you do Edall on it.


How do you make a star in mswlogo?

TELL ME THE ANSWER


How do you draw an ark on mswlogo?

REPEAT 69 [FD 100 BK 50 RT 90 LT 90 BK 25]SY 90 FD 20 LT 25