Computer Science, asked by poonamdutt8, 8 months ago

1. Write a
program to calculate
radius of a sphere by taking volume as the input , in java programming​

Answers

Answered by gausetsp8343
1

Answer:

include <stdio.h>

int main()

{

int radius=48;

float pie=3.14285714286;

double volume=(4.0/3.0)*pie*(radius*radius*radius);

printf("Volume of the sphere=%f",volume);

}

Similar questions