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