hallo zusammen
habe ein problem muss cos(x) und sin(x) ohne benutzung von math.h programmieren.
also ich habe nun cos(x) ohne math.h hinbekommen aber ich bekomme jetzt sin(x) einfach nicht hin.kann mir jemand helfen!!!
also sourcecode für cos(x) lautet:
#include <stdio.h>
main()
{
double x,term,cosx;
int i;
printf("X?: ");
scanf("%lf",&x);
term = 1;
cosx = 1;
for (i=1;i < 20; ++i)
{
term = term * x * x;
term = term / i * 2 * ( i * 2-1);
if ( i % 2 == 0 )
cosx = cosx + term ;
else
cosx = cosx - term;
}
printf("\n %.9f ",cosx);
im Anhang ist die formel für sin(x)