English
Tamil Nadu Board of Secondary EducationHSC Science Class 11

Write a program to find the sum of the following series: x –x22!+x33!+x44!+x55!–x66! - Computer Science

Advertisements
Advertisements

Question

Write a program to find the sum of the following series:

`x  – x^2/(2!) + x^3/(3!) + x^4/(4!) + x^5/(5!) – x^6/(6!)`

Short Note

Solution

using namespace std;
#include
int main()
{
int i,x,n,f=1,sign=1;
float sum=0,t;
cout<<“\nEnter N value”;
cin>>n;
cout<<“\nEnter x value …”;
cin>>x;
t=x;
for(i=1;i<=n;i++)
{
f = f * i;
sum = sum + sign * t/f;
t = t * x;
sign = -sign;
}
cout<<”SUM OF THE SERIES = “<<sum;
return O;
}

Output

 

shaalaa.com
Introduction to Flow of Control
  Is there an error in this question or solution?
Chapter 10: Flow of Control - Evaluation - Section - D [Page 179]

APPEARS IN

Samacheer Kalvi Computer Science [English] Class 11 TN Board
Chapter 10 Flow of Control
Evaluation - Section - D | Q 4. (a) | Page 179
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×