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> double area; CLinkbotI robot; double radius = 1.75; double trackwidth = 3.69; robot.traceOff(); robot.drivexyTo(1, 3, radius, trackwidth); robot.traceOn(); robot.drivexyTo(10, 3, radius, trackwidth); robot.drivexyTo(10, 8, radius, trackwidth); robot.drivexyTo(4, 8, radius, trackwidth); robot.drivexyTo(1, 3, radius, trackwidth); printf("What is the area of the trapezoid?"+"\n"); scanf("%lf", &area);
Problem Statement: Connect the points (4,8), (10,8), (10,3), (1,3) to form a trapezoid. Enter the area of the trapezoid in the appropriate variable. |
|||||||||||