coderz.py

Keep Coding Keep Cheering!

Sum Of Series 1 + 2 + 4 + 8 + 16 + 32 + . . n

Program code: Output: Main Logic used here: Note: also read about Sum Of Series 1 + 2 + 3 + 4 + 5 + 6 . . . . n Follow Me Please follow me to read my latest post on programming and technology if you like my post. https://www.instagram.com/coderz.py/ https://www.facebook.com/coderz.py Rabecca FatimaStaying up to the […]

November 5, 2022 | C++ | No comments

Sum Of Series 1 + 1 / 2 ^ 2 +. . . . 1 / n ^ n

A program to compute the sum of a given series 1 + 1/2^2 + 1/3^3 + …..+ 1/n^n. For this, we will be given the value of n, and our task will be to add up each term, beginning with the first, to find the sum of the given series. Program code: Output: Note: also […]

November 5, 2022 | C++ | No comments

Advertisement