Algorithm for adding N Natural numbers
Introduction In this article we are going to analyze an algorithm to add the numbers from 1 to 10, that is to say we will create a function that solves the operation 1+2+3+…+10, this function will be programmed in a generic way to calculate the sum of all the natural numbers from 1 to N, …