
|
|
|
|
|
|
|
|
As seen in the figure above, the probability that
|
|
|
|
#include <stdio.h>
int main()
{
int i;
float x;
printf("Enter initial guess =");scanf("%f",&x);
for (i=0;i<100;i++) /* insert your iteration code */
printf("%f\n",x);
return 0;
}
|
|
|
|
|