You're hosting a pizza party, and you need to calculate how many pizzas to order based on the number of guests, and the number of slices a guest will eat.
In this exercise, you will write a program that:
Imagine you have 6 guests, and you're expecting them to eat 3 slices each. That's 18 slices. How many 8-slice pizzas do you need to order? 18 divided by 8 is 2.25!
Since we can't actually order 2.25 pizzas, we'll just go ahead and order 3 pizzas - and that's where Math.ceil comes in.
Math.ceil is a function that rounds up up a given number to the nearest whole number:
* Even a developer in space can't remember half the functions a language provides. In fact, it's probably harder to remember Math function names in space because you likely have bigger problems to worry about if you're a developer that somehow ended up in space.
No variables
Output (Console)