answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: How do you draw rectangle in logo with repeat command?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you mAke a rectangle using repeat command FOR LOGO?

This is how to make a rectangle in Microsoft logo. repeat 2[fd 200 rt 90 fd 400 rt 90]


How do you draw nonagon using logo command?

repeat 3 [fd 250 rt 120]


Write logo commands to draw the rectangle figure?

write the logo commands to draw the triangle


How do you draw rhombus using logo command?

REPEAT 2 [RT 45 FD 100 RT 135 FD 100]


How do you draw a rectangle in LOGO?

reapet 2[fd100 rt 90]


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

repeat 360[fd1 lt 1]


How do you mke a square using repeat command FOR LOGO?

Repeat 4 [fd 60 rt 90]


How do you draw a circle on MSW logo?

Repeat 360 [fd 1 lt 1]


How do you draw triangle in Microsoft logo?

repeat 3[fd 40 rt 120]


How do you draw a sun set on mswlogo?

Here are the steps on how to draw a sunset on MSW Logo: Start by creating a new window and setting the background color to blue. Use the fd command to draw a horizon line across the bottom of the screen. Use the seth command to set the turtle's heading to 270 degrees. Use the pd command to put the turtle in pen down mode. Use the repeat loop to draw a series of orange and yellow lines for the sun. Use the seth command to set the turtle's heading to 0 degrees. Use the pd command to put the turtle in pen down mode. Use the repeat loop to draw a series of red and pink lines for the sky. Use the ht command to hide the turtle. Here is an example of the code you can use to draw a sunset on MSW Logo: set background blue fd 400 seth 270 pd repeat 100 { fd 10 sethue orange fd 10 sethue yellow } seth 0 pd repeat 100 { fd 10 sethue red fd 10 sethue pink } ht This code will create a sunset with a orange and yellow sun and a red and pink sky. You can adjust the code to change the colors of the sun and sky, as well as the size of the sunset. Here are some additional tips for drawing a sunset on MSW Logo: Use the sethue command to change the color of the turtle's pen. Use the repeat loop to repeat a series of commands. Use the seth command to set the turtle's heading. Use the pd command to put the turtle in pen down mode. Use the ht command to hide the turtle. With a little practice, you can learn to draw beautiful sunsets on MSW Logo.


How do you draw an octagon using Logo command?

An octagon is an eight-sided pentagon where all sides are equal length and all angles are equal. To draw an octagon in Logo, you move forward the length of a side and then turn 45 degrees, repeating 8 times (8x45=360). The following will therefore draw an octagon with a side length of 100 pixels: repeat 8 [fd 100 rt 45]


What is the Logo command to draw alphabet k?

Starting from the centre, move forward 100 pixels, turn 180 degrees and move forward 100 pixels (returning to the centre). Then turn 120 degrees. Repeat three times. repeat 3 [fd 100 rt 180 fd 100 lt 120]