English
Tamil Nadu Board of Secondary EducationHSC Science Class 11

Write a program to find the sum of the following series: x+x22+x33+………+xnn - Computer Science

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?
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. (b) | Page 179
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×