Answer:
90 PLEASE MARK ME BRAINLLIEST
Step-by-step explanation:
289.76-54.88-54.88=180/2=90
Answer:
it should be 2,744. i believe
Step-by-step explanation:
<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:
yes
Step-by-step explanation:
Answer:
the y-intercept is 2.
Step-by-step explanation:
If you find the rate of change, which in this case is 1/-4, you can reverse the rate of change.
1 and -2
-1 (instead of adding 1) to x
+4 (instead of subtracting) to y
you get (0, 2).
Making the y-intercept 2.