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