Grid: | ||
Tics Lines: |
|
Width
px
|
Hash Lines: |
|
Width
px
|
Labels: |
|
Font
px
|
Trace Lines: | ||
Robot 1: |
|
Width
px
|
Robot 2: |
|
Width
px
|
Robot 3: |
|
Width
px
|
Robot 4: |
|
Width
px
|
Axes: | x-axis | y-axis | Show Grid |
Grid: | 24x24 inches | 36x36 inches | 72x72 inches |
96x96 inches | 192x192 inches | ||
Quad: | 4 quadrants | 1 quadrant | Hardware |
Units: | US Customary | Metric |
Background: |
![]() |
|
|
|
/* Code generated by RoboBlockly v2.0 */ #include <linkbot.h> CLinkbotI robot; double radius = 1.75; double trackwidth = 3.69; robot.driveDistance(2, radius); robot.turnRight(90, radius, trackwidth); robot.driveDistance(4, radius); robot.turnLeft(90, radius, trackwidth); robot.driveDistance(10, radius); robot.turnRight(90, radius, trackwidth); robot.driveDistance(2, radius); robot.turnLeft(90, radius, trackwidth); robot.driveDistance(2, radius); robot.turnLeft(90, radius, trackwidth); robot.driveDistance(8, radius);
Problem Statement: The robot was just hired for a new job delivering newspapers. Each dot on the grid represents a house that the robot must deliver a paper to. Use driveDistance and turnLeft/Right blocks to drive the robot on the route that ends with the house on the far right. Make sure that the robot gets to the other two houses along the route. |
|||||||||||