46 lines
1.4 KiB
C
46 lines
1.4 KiB
C
|
/* Sine Series - Program to find sin(x) using the series: sin(x) = x - (x^3) / 3! + (x^5) / 5! - (x^7) / 7! + .... Do calculations till the value of the next term is not lesser than 10^-5 */
|
||
|
|
||
|
/* We assume that the angle entered by user is between 0 and 2 pi radians (0 and 360 degrees) */
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <conio.h>
|
||
|
#define pi 3.141593
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
double d, x, i=1, s=0, f=1, num, nt;
|
||
|
int tc=1 ;
|
||
|
/* s-sum , f-factorial , num - nemerator , nt - next term , tc - term count */
|
||
|
clrscr() ;
|
||
|
printf("Enter the angle in degrees: ") ;
|
||
|
scanf("%lf", &d) ;
|
||
|
x=d*pi/180 ; /* converts angle to radians */
|
||
|
num=x ;
|
||
|
while(1)
|
||
|
{
|
||
|
f=f*i*(i-1) ; /* Calculates factorial */
|
||
|
if(f==0)
|
||
|
f=1 ;
|
||
|
nt=num/f ; /* calculates next term */
|
||
|
if(nt<0.00001)
|
||
|
break ; /* stops if next term is less than 10 raise to -5 */
|
||
|
if(tc%2==1) /* alternating + and - */
|
||
|
s=s+nt ; /* calculates sum*/
|
||
|
else
|
||
|
s=s-nt ;
|
||
|
/* Preparation for next execution */
|
||
|
i=i+2 ;
|
||
|
tc++ ;
|
||
|
num=num*x*x ;
|
||
|
}
|
||
|
printf("The sine of angle %lf is %lf", d, s) ;
|
||
|
getch() ;
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
Output
|
||
|
|
||
|
Enter the angle in degrees: 30
|
||
|
The sine of angle 30.000000 is 0.500002
|
||
|
*/
|