Write code to complete PrintFactorial()'s recursive case. Sample output if userVal is 5: 5! = 5 * 4 * 3 * 2 * 1 = 120 #include <iostream>using namespace std; void PrintFactorial(int factCounter, int factValue){int nextCounter;int nextValue; if (factCounter == 0) { // Base case: 0! = 1cout << "1" << endl;}else if (factCounter == 1) { // Base case: Print 1 and resultcout << factCounter << " = " << factValue << endl;}else { // Recursive casecout << factCounter << " * ";nextCounter = factCounter - 1;nextValue = nextCounter * factValue; /* Your solution goes here */ }} int main() {int userVal; userVal = 5;cout << userVal << "! = ";PrintFactorial(userVal, userVal); return 0;} Please help me with this problem using c++.
Write code to complete PrintFactorial()'s recursive case. Sample output if userVal is 5:
5! = 5 * 4 * 3 * 2 * 1 = 120
#include <iostream>
using namespace std;
void PrintFactorial(int factCounter, int factValue){
int nextCounter;
int nextValue;
if (factCounter == 0) { // Base case: 0! = 1
cout << "1" << endl;
}
else if (factCounter == 1) { // Base case: Print 1 and result
cout << factCounter << " = " << factValue << endl;
}
else { // Recursive case
cout << factCounter << " * ";
nextCounter = factCounter - 1;
nextValue = nextCounter * factValue;
/* Your solution goes here */
}
}
int main() {
int userVal;
userVal = 5;
cout << userVal << "! = ";
PrintFactorial(userVal, userVal);
return 0;
}
Please help me with this problem using c++.
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 1 images