Grace is creating a game about a cook in a kitchen Grace wants the cook to flip a burger in the air if it lands in the pan, the cook should earn points if it fails on the floor the cook should lose points Which of these statements should Grace use?

(1 point)

When the burger falls, one ports

sands in the 100 points ese se 100 points

Give the cook 100 points for a good landing and take away 100 for a bad landing

Add points or take them away if the landing is good or bad

Grace should use the statement: "Give the cook 100 points for a good landing and take away 100 for a bad landing."

To implement this in Grace's game, she will need to create a condition that checks whether the burger lands in the pan or on the floor. If the burger lands in the pan, Grace can add 100 points to the cook's score. On the other hand, if the burger lands on the floor, Grace should deduct 100 points from the cook's score.

Here is a step-by-step breakdown of how Grace can implement this in her game:

1. Create a variable to store the cook's score, initially set to 0.
2. Add a condition to check if the burger lands in the pan or on the floor.
3. If the burger lands in the pan:
- Increase the cook's score by 100 points.
4. If the burger lands on the floor:
- Decrease the cook's score by 100 points.

By following these steps, Grace can ensure that the cook earns points for a good landing and loses points for a bad landing in her cooking game.