1.

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

Answer»

e #includevoid main(){FLOAT v,r;cout<<"ENTER volume";CIN>>v;r=cbrt(3*7/4*22);cout<



Discussion

No Comment Found