C++ program to find the sum of the series x+x^2/2+x^3/3+…..+x^n/n
#include<iostream.h>#include<conio.h>#include<math.h>void main(){ clrscr(); //to clear the screen int i,n; float x,sum=0; cout<<“x+x^2/2+x^3/3+…..+x^n/n”; cout<<“nEnter value of x and n:”; cin>>x>>n; for(i=1;i<=n;++i) sum+=pow(x,i)/i; cout<<“nsum=”<<sum; getch(); //to stop the screen}
