To determine the next smaller scale size following the scale size equal to 2.353, we just have to divide this scale size by the scale factor which is given to be 1.33. That is, smaller scale size = 2.353 / 1.33 = 1.77Thus, the next smaller scale size is approximately 1.77.
HOPE THIS HELPS YOU
Whats the x referring to<span />
C because the proportions are equal and multiplied by 4/4
<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>
Answer:
i believe the correct answer is C.
Step-by-step explanation: