Answer:
double pyramidVolume(double baseLength, double baseWidth, double pyramidHeight)
{
return baseLength * baseWidth * pyramidHeight / 3.0;
}
9.4m questions
12.2m answers