use fd rt lt bk hide turtel show turtel penup pendown giving comands to the part
write the logo commands to draw the triangle
fd 60 rt 120 fd 60 rt 120 fd 60 rt 120 will cause the turtle to draw a triangle. The square brackets indicate that the enclosed commands are to be executed three times, repeat 3 [fd 60 rt 120] Search Google with: "logo commands triangle" and have a look through the websites on the subject.
To draw a castle in MSW Logo, you can use a combination of basic shapes and commands. For example, you might use the following commands: REPEAT 4 [FORWARD 100 RIGHT 90] ; Draw the base square FORWARD 100 ; Move to the top of the square REPEAT 4 [FORWARD 50 RIGHT 90] ; Draw the top square (tower) You can further customize the castle by adding more towers and details with additional commands. Adjust the dimensions and repetitions to create your desired castle design.
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.
For 5 pointed star use repeat 5 [fd 100 rt 144]
To draw a heptagon in Logo, you can use the following commands: REPEAT 7 [FORWARD 100 RIGHT 51.43] This command moves the turtle forward by 100 units and turns it right by approximately 51.43 degrees, repeating this process seven times to form a heptagon. Adjust the FORWARD value to change the size of the heptagon.
repeat 3 [fd 250 rt 120]
fd 50 rt 90 fd 50 rt 90 fd 50 rt 90 fd 50
In Logo programming, the command to draw a rhombus can be achieved using the combination of FORWARD and RIGHT (or LEFT) commands to create the desired angles. A typical command sequence might look like this: REPEAT 2 [FORWARD 100 RIGHT 60 FORWARD 100 RIGHT 120], where you adjust the angles and lengths as needed to create a rhombus shape.
fd 50 rt120 fd50 rt120 fd50 rt 120
you did
repcount