Write a function to get the factorial of all elements of the array using the method factorial(: public int[] FactorizeVa
Posted: Sat Feb 19, 2022 3:20 pm
Write a function to get the factorial of all elements of the array using the method factorial(: public int[] FactorizeValues() { --Code Here-- } private int factorial(int a) { if (a == 1) return 1; else return a * factorial(a-1); }