<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>
256 cubed cm.... you get this by multiplying them three numbers.
Answer:
A is the answer
Step-by-step explanation:
Five to the power of 10 would be 9765625, so the scientific notation would be
9.765625 * (10^6), I think.
(I haven't done scientific notation in a long time, but I'm relatively sure that is what it is.)
Hope this kind of helped!
5x + 2y = 13
x + 2y = 9
-------------------------subtract
4x = 4
x = 1
x + 2y = 9
1 + 2y = 9
2y = 8
y = 4
answer (1,4)