Question: (JAVA CODE) Write a recursive java program where: when 3 values are taken as input, each value after will be the sum of the last
(JAVA CODE)
Write a recursive java program where:
when 3 values are taken as input, each value after will be the sum of the last 3 values.
An example for this is, {1,2, 3} the next value would be 6. Then given {1,2,3,6} the next value would be 11. Then given 1, 2, 3, 6,11 the next value would be 20. If we were to call this algorithm like sumOfThree(100), it should repeat 100 times.
BECAREFUL ABOUT OVERFLOW
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
