Problem 4.
Create the pseudocode and flow chart for the following problem. Calculate the value of n ! Do not use the factorial fn, use the actual recursive definition. A
recursive function uses previous values of itself to find the current value. So for n! where n=4, the formula would be n!4=n!3=4
Problem 4.
Create the pseudocode and flow chart for the following problem.Calculate the value of n! Do not use the factorial fn,use the actual recursive definition.A
recursive function uses previous values of itself to find the current value.So forn! where n=4the formula would be n!4