its easy...
1st you need to draw its radius (any length you want)
2nd type circle in your command box.
For example in the first one you put 50 as length, you go forward 50
and then in the second one type circle 50.
And then you have your circle.
No it will meet the starting point, but you can go on the circle to make it never ending.
A compass
Eight of them.
360
no
To draw a circle inside another circle in MSWLogo, you can use the REPEAT command along with the CIRCLE command. First, use the CIRCLE command to draw the outer circle, then adjust the pen position to the center and use the CIRCLE command again with a smaller radius for the inner circle. Here's a simple example: CIRCLE 100 ; Draw outer circle with radius 100 PENUP SETXY 0 -50 ; Move to inner circle position (50 units up) PENDOWN CIRCLE 50 ; Draw inner circle with radius 50 This will create a smaller circle inside the larger one.
TELL ME THE ANSWER
no we can't
yes
To create a curved line in MSWLogo, you can use the REPEAT command combined with the FORWARD and RIGHT (or LEFT) commands. For example, you can draw a quarter-circle by repeating a small forward movement and a slight turn: REPEAT 36 [FORWARD 5 RIGHT 10]. Adjust the values to change the curvature and size of the arc as needed.
It is called "Edall" and you do Edall on it.
MSWLogo is an educational programming environment based on the Logo programming language, designed primarily for teaching programming concepts to children. It features a turtle graphics system that allows users to create drawings by issuing commands to a virtual "turtle," making it engaging and visually intuitive. MSWLogo is widely used in schools to introduce programming concepts such as loops, procedures, and recursion in a fun and interactive manner. Its simple syntax and interactive interface make it accessible for beginners.
To create a house in MSWLogo, start by using the REPEAT command to draw the square base of the house. Use commands like FORWARD and RIGHT to navigate and shape the walls. Next, use the TRIANGLE command or a combination of lines to create the roof. Customize your house by adding windows and a door with smaller shapes using similar commands.
This is how to make a rectangle in Microsoft logo.fd 100 rt 90fd 150 rt 90fd 100 rt 90fd 150 rt 90
To draw a boat in MSWLogo, you can use simple commands to create the shape. Begin by using the REPEAT command to create the hull, using FORWARD and RIGHT or LEFT to form the angles. Add details like sails or waves with additional shapes and lines. For example, you could use PENUP and PENDOWN to move the turtle without drawing while positioning the sails.
px for [x 1 1000000] [fd :x rt 90]
To create shapes in MSWLogo, you use commands to control the turtle, which draws on the screen. For example, the command REPEAT 4 [FORWARD 100 RIGHT 90] will draw a square by moving the turtle forward and turning it right. You can change the number of repetitions and angles to create different shapes, such as triangles or polygons. Additionally, you can use commands like PENUP and PENDOWN to control when the turtle draws.