C++ Your lease is up and it’s time to move. Unfortunately, you have a lot of stu
ID: 3682454 • Letter: C
Question
C++ Your lease is up and it’s time to move. Unfortunately, you have a lot of stuff and you don’t want to spend too much time moving it because you’d rather be practicing your programming skills. Thankfully, you have friends who can help, though this help comes at a cost. Your friends can move 20 boxes an hour, but they require one 16 inch (diameter) pizza for this work. Write a function in C++ that takes the number of boxes you have and returns how much square feet of pizza you will have to buy.
Use the function header: sqFtPizza(int numBoxes)
and have it return the square feet of pizza as a float. Assume that the pizzas are perfectly round and that your friends require a full pizza even if they only work a partial hour.
Explanation / Answer
#include<iostream>
using namespace std;
int sqFtPizza(int numBoxes){
return 16*((numBoxes/20) + !(numBoxes%20 == 0));
}
int main(){
cout << sqFtPizza(20);
}
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.