Question: (JAVA CODE) Write a recursive algorithm where when 2 values are given, each value after will be the sum of the last 2 values. For
(JAVA CODE) Write a recursive algorithm where when 2 values are given, each value after will be the sum of the last 2 values. For example, given 1,2 the next value would be 3. Then given 1,2,3 the next value would be 5. Then given 1, 2, 3, 5, the next value would be 8. If we were to call this algorithm like sumOfTwo(5), it should repeat 5 times. so that the output would be 8.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
