Question: JAVA Write code to complete printFactorial()'s recursive case. Sample output if userVal is 5: 5! = 5 * 4 * 3 * 2 * 1

JAVA Write code to complete printFactorial()'s recursive case. Sample output if userVal is 5:

5! = 5 * 4 * 3 * 2 * 1 = 120 CODE BELOW 

public class RecursivelyPrintFactorial { public static void printFactorial(int factCounter, int factValue) { int nextCounter; int nextValue;

if (factCounter == 0) { // Base case: 0! = 1 System.out.println("1"); } else if (factCounter == 1) { // Base case: Print 1 and result System.out.println(factCounter + " = " + factValue); } else { // Recursive case System.out.print(factCounter + " * "); nextCounter = factCounter - 1; nextValue = nextCounter * factValue;

/* Your solution goes here */

} }

public static void main (String [] args) { int userVal;

userVal = 5; System.out.print(userVal + "! = "); printFactorial(userVal, userVal); } }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!