Computer Science, asked by mrbaba8431, 8 months ago

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 Anonymous
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