You need to implement a program to find the volume of the unit sphere.
Program: Write a C program for determining the volume of the unit sphere by the Monte Carlo Method \(x^{2}+ y^{2} + z^{2} <1, x > 0, y > 0, z > 0.\) : This is what I have so far, but it's not working.
#include #include #include #include int main() {float x, y, z;int n, i, count=0;float volume=(4/3);srand(time(NULL));for (i=0; i< n; i++) {x=1.0*rand()/RAND_MAX;y=1.0*rand()/RAND_MAX;z=1.0*rand()/RAND_MAX;if (pow(x,2) + pow(y,2)+ pow(z,2) < 1.0) count=count+1;}printf("True value = %f\n", volume*3.1415);printf("Appx value = %f\n", 1.0*count/n);return 0;
You need to make well-formed and clean code. You should not copy and paste the code from other source.