[C++] Tính S(n) = 1 + x ^ 2 / 2!+ x ^ 4 / 4!+ ... + x ^ 2n / (2n)! Ngôn ngữ lập trình: C++ Phần mềm: Visual Studio CODE: Select All #include <iostream>using namespace std;//Tính S(n) = 1 + x ^ 2 / 2!+ x ^ 4 / 4!+ ... + x ^ 2n / (2n)!float calSum(int N, int X){ float S = 1, T1 = 1, T2 = 1; for (int i = 2; i <= 2 * N; i = i + 2) { T1 = T1 * X * X; T2 = T2 * (i - 1) * i; S = S + (float)T1 / T2; } return S;}int main(){ int N; float X; cout << "Input N = "; cin >> N; cout << "Input X = "; cin >> X; float result = calSum(N, X); cout << "Result = " << result; system("pause"); return 0;}