Write LOGO commands to draw a rectangle of length 150 and breadth
Write LOGO commands to draw a square of side 200.
C
o
duroHow many narts does a LOGO procedure h
Answers
Answered by
6
Answer:
As breadth is not given for the rectangle, i am taking it as 200
To do:
- Draw a rectangle of length 150 and breadth 200
- Draw a square of side 200
Rectangle of length 150 and breadth 200:
fd 150
rt 90
fd 200
rt 90
fd 150
rt 90
fd 200
The above commands forms a rectangle of length 150 and breadth 200
Square of side 200:
fd 200
rt 90
fd 200
rt 90
fd 200
rt 90
fd 200
The above commands form a square of side 200
Attachments:
Similar questions