Computer Science, asked by harshutannu01, 1 month ago

Write LOGO commands for the following:
(a) To make a procedure named BOX​

Answers

Answered by zZ2
15

Answer:

To Box

FD 100

LT 90

FD 20

LT 90

FD 100

LT 90

FD 20

END

Answered by Anonymous
9

Required LOGO programme for creating a box is as follows::

FD 80

LT 90

FD 80

LT 90

FD 80

LT 90

FD 80

Command used::

• FD 80 means forward 80 steps.

• LT 90 means rotate 90° towards left.

More LOGO commands::

• BK 80 means backward 80 steps.

• RT 90 means rotate 90° towards right.

You can also create different polygons by changing the command's parameter.

Output attached!!

Attachments:
Similar questions