Advertisements
Advertisements
प्रश्न
Write a program to find the sum of the following series:
`x + x^2/2 + x^3/3 + ……… + x^n/n`
टिप्पणी लिखिए
उत्तर
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
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?