<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>
B is the correct answer im pretty sure
Answer:
45 people only if that equals 280 people together
Step-by-step explanation:
never mind i added it it is wrong wait i'll try again
Answer:b
Step-by-step explanation:
Answer:
-3
Step-by-step explanation:
The statement is,
→ Sum of 9 and -16 increased by 4
The equation will be,
→ {9 +(-16)} + 4
→ (9 - 16) + 4
→ -7 + 4
→ [ -3 ]
Hence, the solution is -3.