#include <stdio.h> #include<math.h> int main (){ int n,x1,i,j; float x,sign,cosx,fact; printf("Enter The Number Of Terms In Aseries :\n"); scanf("%d",&n); printf("Enter The Value Of x (In degrees)\n"); scanf("%f",&x); x1=x; x=x*(3.142/180.0); /* convert to degree */ cosx=1; sign=-1; for(i=2;i<=2;i=i+2){ fact=1; for(j=1;j<=i;j++){ fact=fact*j; } cosx=cosx+(pow(x,i)/fact)*sign; sign=sign*(-1); } printf("Sum of the cosine series = %f\n",cosx); printf("The Value of cos(%d) using library function=%f\n",x1,cos(x)); return 0; }
Most Popular
-
Befunge: Developed by : Chris Pressey Year: 1993 ...
-
-
The list below is an unordered list. You can pick any...
-
Recursion happens when function calls itself directly...
Copyrights © 2016 Codzya. Powered by Blogger.
Sunday, May 1, 2016
Subscribe to:
Post Comments (Atom)
- Recent
- Weekly
- Comment
Recent
As a task executes it utilizes the processor...
Sep 25 2016 | Read moreMemory leak occurs when programmers create a memory in heap and...
Aug 19 2016 | Read moreBefunge: Developed by : Chris Pressey Year: 1993 Stack-based,...
May 19 2016 | Read more1- The C Programming Language This book is a comprehensive...
May 18 2016 | Read more1. Java The tech community recently celebrated the 20th...
May 17 2016 | Read more
Weekly
-
Befunge: Developed by : Chris Pressey Year: 1993 ...
-
-
The list below is an unordered list. You can pick any...
-
Recursion happens when function calls itself directly...
-
1- The C Programming Language This book is a...
Comment
Get this Recent Comments Widget
0 Comment to "Sum of Cos(x) Series"
Post a Comment