Answer to Question #217578 in C++ for kojo

Question #217578

Given sphereRadius, compute the volume of a sphere and assign sphereVolume with the result. Use (4.0 / 3.0) to perform floating-point division, instead of (4 / 3) which performs integer division. Volume of sphere = (4.0 / 3.0) π r3 (Hint: r3 can be computed using *)

#include

#include

#include


using namespace std;


int main() {

double sphereVolume;

double sphereRadius;


cin >> sphereRadius;


/* Your solution goes here */


cout << fixed << setprecision(2) << sphereVolume << endl;


return 0;

}


1
Expert's answer
2021-07-16T10:25:52-0400
#include <iostream>


#include <iomanip>


using namespace std;


int main() {
    double sphereVolume;
    double sphereRadius;
    cin >> sphereRadius;
    /* Your solution goes here */
    sphereVolume=(4.0/3.0)*(3.142*(sphereRadius*sphereRadius*sphereRadius));
    
    cout << fixed << setprecision(2) << sphereVolume << endl;


return 0;


}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS