Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Multidimensional Array Data Management In Databases

Authors: Florin Rusu

1st Edition

1638281483, 978-1638281481

More Books

Students also viewed these Databases questions

Question

Prove Theorem11.5.

Answered: 1 week ago

Question

What are the major chords to play a piano?

Answered: 1 week ago