Build a program from the blocks in the tray that uses the math library, declares a math object, and calls the floor action and the ceiling action. Edit the floor and ceiling actions so they find the floor and ceiling of 41.4 and output the following messages.
The floor of 41.4 is 41.0 The ceiling of 41.4 is 42.0
Coding:
Hotkey Shortcuts
Move BlocksUP or DOWN or TAB
Run Program ALT + SHIFT + R
Stop Program ALT + SHIFT + S
Hide Tray ALT + SHIFT + X
Zoom In ALT + +
Zoom Out ALT + -
Open Help ALT + SHIFT + H
Navigate to Tray ALT + 1
Navigate to Blocks ALT + 2
Enter Navigation Mode SHIFT + ENTER
Blocks
Hint
Great job!
Try again
Start by adding the use block for the Math library. Next, add the math object block. Then place the correct action block that calculates the floor. Once the block is placed replace the word value with 41.4 so the action can calculate the floor. Then add the output block, which outputs text and the result of the action you placed into the program. Now add the ceiling action block and edit the value to be 41.4. Finally, add the output block for the ceiling result and run your program.