A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

Write a program in C++ to find the sum of series 1 - X^2/2! + X^4/4!-.... upto nth term
Q:

Write a program in C++ to find the sum of series 1 - X^2/2! + X^4/4!-.... upto nth term

0

Write a program in C++ to find the sum of series 1 - X^2/2! + X^4/4!-.... upto nth term

Sample Output:

 Find the sum of the series 1 - X^2/2! + X^4/4!-....:                  
---------------------------------------------------------              
 Input the value of X: 3                                               
 Input the value for nth term: 4                                       
 term 1 value is: 1                                                    
 term 2 value is: -4.5                                                 
 term 3 value is: 3.375                                                
 term 4 value is: -1.0125                                              
 The sum of the above series is: -1.1375

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

#include <iostream>
#include <math.h>
using namespace std;

int main()
{
    float x, sum, term, fct, y, j, m;
    int i, n;
    y = 2;

    cout << "\n\n Find the sum of the series 1 - X^2/2! + X^4/4!-....:\n";
    cout << "---------------------------------------------------------\n";
    cout << " Input the value of X: ";
    cin >> x;
    cout << " Input the value for nth term: ";
    cin >> n;
    sum = 1;
    term = 1;
    cout << " term 1 value is: " << term << endl;
    for (i = 1; i < n; i++) 
	{
        fct = 1;
        for (j = 1; j <= y; j++) 
		{
            fct = fct * j;
        }
        term = term * (-1);
        m = pow(x, y) / fct;
        m = m * term;
        cout << " term " << i + 1 << " value is: " << m << endl;
        sum = sum + m;
        y += 2;
    }
    cout << " The sum of the above series is: " << sum << endl;
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now