Answers for "C++ Volume of a Sphere"

C++
0

C++ Volume of a Sphere

int rad1;
    	float volsp;		
        cout<<" Input the radius of a sphere : ";
    	cin>>rad1;
    	volsp=(4*3.14*rad1*rad1*rad1)/3; //3.14 is the pie
        cout<<" The volume of a sphere is : "<< volsp << endl;
        cout << endl;
Posted by: Guest on March-09-2022

Browse Popular Code Answers by Language