Recursive method that gets the sum from 1 to a given integer
Question Description
Write a recursive method that takes an integer number and returns the sum of the numbers from 1 to that number. The method must solve the problem recursively.Then write an application that calls the method with a few different numbers and displays the return value of the method.