The volume of a sphere is calculated by using formula v=4/3*22/7*r3 write a program to calculate the radius of a sphere by using formula
Answers
Answered by
0
#include <bits/stdc++.h>
#include<iostream.h>
void main()
{
float v,r;
cout<<"enter volume";
cin>>v;
r=cbrt(3*7/4*22);
cout<<r;
}
Similar questions