answersLogoWhite

0

What else can I help you with?

Related Questions

How do you make circle in msw logo using repeat command?

repeat 360[fd1 lt 1]


How do you make a boat in MSW logo?

n


What command allows the turtle to turn its head in any direction in MSW LOGO?

this command allows the turtle to turn its head in any direction


How do you make an ellipse in MSW logo screen?

To create an ellipse in MSW Logo, you can use the ELLIPSE command. First, set the desired dimensions by specifying the horizontal and vertical radii. For example, the command ELLIPSE 100 50 would draw an ellipse with a horizontal radius of 100 units and a vertical radius of 50 units. Make sure to adjust the values according to your desired size and shape.


How you make a castle on msw logo?

you type pu your mum and your dad


What is the advantage of using MSW LOGO?

MSW logo is a simple programing language. It gives an idea for programing as it very simple


How do you make a trapezium in MSW logo?

Well, honey, to make a trapezium in MSW Logo, you gotta use the "FD" (forward) and "RT" (right turn) commands to draw the sides of the trapezium at different lengths and angles. Just remember to keep track of your angles and side lengths to get that trapezium looking sharp. And if you mess up, just hit that "CLEARSCREEN" command and start over - ain't nobody got time for crooked trapeziums!


How do you draw a cycle in MSW Logo?

To draw a cycle in MSW Logo, you can use the REPEAT command along with the FORWARD and RIGHT commands. For example, you can type REPEAT 36 [FORWARD 10 RIGHT 10] to create a circular shape. This command effectively moves the turtle forward while turning it slightly, creating a smooth cycle. Adjust the numbers to change the size and smoothness of the cycle.


How do you make a car on msw logo?

To draw a car in MSW Logo you need to type in commands to control the turtle and draw the image. Common command to control directions of the turtle, and thus draw the car, are fd Ã? forward, lt Ã? left, and rt Ã? right. By including a number with these commands you are telling the turtle the length of the line you would like it to draw.


How do you make pentagon in msw logo?

reapea 5 [fd 100 rt 90 5/360]


How do you play MSW Logo free?

`can i play? jhvjkoo


How do you make flower in msw logo using repeat command?

To create a flower in MSW Logo using the repeat command, you can draw petals in a circular arrangement. For example, you can use the following code: REPEAT 6 [ FORWARD 50 RIGHT 60 FORWARD 50 RIGHT 120 FORWARD 50 RIGHT 60 FORWARD 50 RIGHT 120 RIGHT 60 ] This code draws six petals by repeating the pattern of moving forward and turning at specific angles. Adjust the numbers to change the size and shape of your flower.