PROGRAM FIND ITS SUM: x/1!-x^3/3!+x^5/5!-x^7/7!—– n terms
/*PROGRAM TO PRINT A SERIES AND FIND ITS SUM: x/1! – x^3/3! + x^5/5! -x^7/7! —– n terms*/ #include<conio.h> #include<iostream.h> #include<math.h> class series { int i,n,x,a,count,j; float sum,b; public: void …