Problem:
Question- Define a function PyramidVolume with double parameters baseLength, baseWidth, and pyramidHeight, that returns as a double the volume of a pyramid with a rectangular base. Relevant geometry equations:
Base area = base length x base width
(Watch out for integer division).
Please show all the calculation regarding the problem.