Ask Question
17 May, 14:30

C + + code - - Factorial Recursion

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

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

#include

using namespace std;

void PrintFactorial (int factCounter, int factValue) {

int nextCounter = 0;

int nextValue = 0;

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;

}

}

int main () {

int userVal = 0;

userVal = 5;

cout << userVal << "! = ";

PrintFactorial (userVal, userVal);

return 0;

}

+1
Answers (1)
  1. 17 May, 17:45
    0
    Handle the print outside of the factorial function, which only needs one userVal when called.

    int factorial (int foo)

    {

    if (foo = = 1)

    return 1;

    else

    return (foo * factorial (foo - 1));

    }
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “C + + code - - Factorial Recursion Write code to complete PrintFactorial () 's recursive case. Sample output if userVal is 5: 5! = 5 * 4 * ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers