Question: Please explain each line of code of what the code is doing, thank you :-) public class TestRecursion { public static void mainiString args[]) {

Please explain each line of code of what the code is doing, thank you :-)
public class TestRecursion { public static void mainiString args[]) { int fWithLoop = computeFactorialWithLoop(3): int fWithRecursion = findFactorialRecursion(3): int fibonacciCalculated = computeFibonacci(6): System.out.println(fWithLoop): System.out.println(fWithRecursion): System.out.println(fibonacciCalculated): } public static int computeFactorialWithLoop(int n) { int factorial = n: for (int i = n - 1: i > = 1: i--) { factorial = factorial * i: } return factorial: } public static int findFactorialRecursion(int n) { if (n == 1 || n == 0) { return 1: } else { return (n * findFactorialRecursion(n - 1)): } } package testRecursion: public class Test { public static void mainiString args[]) { while (!StdIn.isEmpty()) { StdOut.println("60t rightarrow" + StdIn.readString()): } } }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
