How to calculate the volume of a sphere in C++

2 Answers

0 votes
#include <iostream>
#include <cmath>

using std::cout;
using std::endl;
 
const double PI = 3.14;
 
double sphere_volume(const double r) {
    return 4.0 / 3.0 * PI * pow(r, 3);
}
 
int main()
{
    double radius = 5;
 
    cout << "Volume of sphere = " << sphere_volume(radius) << endl;
}

 
 
/*
run:
 
Volume of sphere = 523.333
 
*/

 



answered Mar 6, 2018 by avibootz
edited Sep 14, 2024 by avibootz
0 votes
#include <iostream>
#include <cmath>

int main()
{
    double r = 3;
          
    double volume = (4 / 3.0) * M_PI * (r * r * r);
           
    std::cout << "Volume of sphere = " << volume;
}

 
/*
run:
 
Volume of sphere = 113.097
 
*/

 



answered Sep 14, 2024 by avibootz

Related questions

1 answer 263 views
1 answer 102 views
1 answer 111 views
1 answer 107 views
1 answer 164 views
1 answer 162 views
1 answer 146 views
...