Your lease is up and it’s time to move. Unfortunately, you have a lot of stuff a
ID: 3681740 • Letter: Y
Question
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. (In case you’ve forgotten your geometry, the area of a circle is pi*r^2. Use 3.14159 for pi.)
PLEASE NOTE: You don't have to include a main() function. The only thing that should be in your solution is the function definition.
Explanation / Answer
void sqFtPizza(int numBoxes)
{
double d=16;
double radius,Area,perBox;
double sftpizza;
radius=d/2;
Area=3.14159*radius*radius;
perBox=Area/20; // calculating the pizza size for perBox
sftpizza=perBox*numBoxes; // calculating the pizza size for given number of boxes
cout<<per sq.inch”<<endl;
cout<<”square inches of pizza is : “<<sftpizza;
}
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.