[C++] Tính S(n) = 1 + 1/1 + 2 + 1/ 1 + 2 + 3 +..... + 1/ 1 + 2 + 3 +.... + N 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 + 1 / 1 + 2 + 1 / 1 + 2 + 3 + ..... + 1 / 1 + 2 + 3 + .... + Nfloat calSum(int N){ float S = 0, T = 0; for (int i = 1; i <= N; i++) { T = T + i; S = (float)1 / T; } return S;}int main(){ int N; cout << "N = "; cin >> N; float result = calSum(N); cout << "Result = " << result << endl; system("pause"); return 0;}