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> #include <mindstorms.h> double answer; CLinkbotI robot1; double radius1 = 1.75; CMindstorms robot2; double radius2 = 1.1; robot1.driveDistanceNB(24, radius1); robot2.driveDistance(24 * (double(3)/4), radius2); robot1.moveWait(); printf("How far does the Mindstorms drive?"+"\n"); scanf("%lf", &answer);
/* Code generated by RoboBlockly v2.0 */ #include <linkbot.h> #include <mindstorms.h> double answer; CLinkbotI robot1; double radius1 = 1.75; CMindstorms robot2; double radius2 = 1.1; robot1.driveDistanceNB(24, radius1); robot2.driveDistance(18, radius2); robot1.moveWait(); printf("How far does the Mindstorms drive?"+"\n"); scanf("%lf", &answer);
Problem Statement: The Linkbot moves 24 units. The Mindstorms moves ¾ of that distance. How far does the Mindstorms move? Update the green block with the correct distance. |
|||||||||||