PRINT SUM OF SERIES: e^1+sqrt(2)+e^3+sqrt(4)+ —-n terms
/*PROGRAM TO PRINT SUM OF SERIES: e^1 + sqrt(2) + e^3 + sqrt(4)+ —- n terms*/ #include<conio.h> #include<iostream.h> #include<math.h> class series { int n,i; float sum,a,b; public: void process(); }; …