- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
C++ program to find the sum of the series 1 + 1/2^2 + 1/3^3 + …..+ 1/n^n
In this tutorial, we will be discussing a program to find the sum of the given series 1 + 1/2^2 + 1/3^3 + …..+ 1/n^n.
For this, we will be given with the value of n and our task is to add up every term starting from the first one to find the sum of the given series.
Example
#include <iostream> #include <math.h> using namespace std; //calculating the sum of the series double calc_sum(int n) { int i; double sum = 0.0, ser; for (i = 1; i <= n; i++) ser = 1/ pow(i, i); sum += ser; return sum; } int main() { int n = 5; double res = calc_sum(n); cout << res << endl; return 0; }
Output
0.00032
Advertisements