The question is:
One way to approximate decimals by a fraction is by using this method.
For decimal value X, initial conditions are, Z1 = X, D1 = 1 and D0 = 0
Repeat
Z(i+1) = 1 / (Z(i) + floor(Z(i))) |
D(i+1) = D(i) * floor(z(i+1)) + D(i-1) | for i = 1,2,3,...
N(i+1) = round(X * D(i+1)) |
Until |X - (N(i) / D(i))| < ϵ
Write a C program to approximate a decimal by a fraction.
This is as far as I have gotten:
#include <stdio.h>
#include <math.h>
int main()
{
float x,z[100],d[100],n[100],dino,nume;
int i=1;
printf("Enter a decimal: ");
scanf("%f",&x);
z[1]=x;
d[1]=1.0;
d[0]=0.0;
do
{
z[i+1]=1/(z[i]+floor(z[i]));
d[i+1]=d[i] * floor(z[i+1])+d[i-1];
n[i+1]=round(x*d[i+1]);
dino=d[i];
nume=n[i];
i++;
}
while (fabs(x-(nume/dino))<.001);
printf("The fractional value is %.f / %.f",nume,dino);
return 0;
}
But obviously, I have made a mistake somewhere. The error is that every time, the answer that i get is 1 / 1.