[C++] Tính S(n) = ½ + ¼ + ... + 1/2n Ngôn ngữ: C++ Phần mềm: Visual Studio CODE: Select All #include <iostream>using namespace std;// S = ½ + ¼ + ... + 1 / 2n// Khai báo 1 biến S = 0// Duyệt từ 1 đến <= N// Tính theo công thức// Trả về kết quả tổngfloat calSum(int N){ float S = 0; for (int i = 1; i <= N; i++) { S = S + (float)1 / (2 * i); } return S;}// Code C++ share by website cnttqn.comvoid main(){ int N; cout << "input N = "; cin >> N; float result = calSum(N); cout << "Result = " << result; cout << endl; system("pause");}