Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,994 questions

51,939 answers

573 users

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 233 views
1 answer 80 views
1 answer 89 views
1 answer 92 views
1 answer 144 views
1 answer 126 views
1 answer 126 views
...