First we need to know 75% of 88.
To find this number we multiply 88 by 0.75.
Hence, 0.75 * 88 = 66
Therefore, 60% of a certain number equals 66.
Then 1% of that certain number equals 66 / 60
Finally, to find our number (which equals 100%) we multiply by 100.
So 66 / 60 * 100 = 110.
Hence, 75 percent of 88 is the same as 60 percent of 110.
<span>Declaring the volume function
double PyramidVolume(double baseLength, double baseWidth, double pyramidHeight){
double baseArea = baseLength * baseWidth;
double vol = ((baseArea * pyramidHeight) * 1/3);
return vol;
}
int main() {
cout << "Volume for 1.0, 1.0, 1.0 is: " << PyramidVolume(1.0, 1.0, 1.0) << endl;
return 0;
}
Defining the function,
include <iostream>
double PyramidVolume(double, double, double);
int main()
{
std::cout << "Volume for 1.0, 1.0, 1.0 is: " << PyramidVolume(1.0, 1.0, 1.0) << std::endl;
return 0;
}
double PyramidVolume(double length, double width, double height)
{
return length * width * height / 3;
}</span>
337.44 is the exact answer. Happy to help.
Answer:
c
Step-by-step explanation: