Advertisements
Advertisements
Question
Write a program to find the sum of the following series:
`x + x^2/2 + x^3/3 + ……… + x^n/n`
Short Note
Solution
using namespace std;
#include
int main()
{
int i,x,n;
float sum=0,t;
cout<<“\nEnter N value”;
cin>>n;
cout<<“\nEnter x value …”;
cin>>x;
t=x;
for(i=l;i<=n;i++)
{
sum = sum + t/i;
t = t * x;
}
cout<<“SUM OF THE SERIES = “<<sum;
}
Output
shaalaa.com
Introduction to Flow of Control
Is there an error in this question or solution?