1. Write a
program to calculate
radius of a sphere by taking volume as the input , in java programming
Answers
Answered by
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