CJCoding With Joseph

Function: Recursive Factorial

Complete the function factorial so it computes n! using RECURSION (no loops). The function must call itself. The main function reads n and prints n!.

Base case: factorial(0) and factorial(1) are 1. Recursive case: factorial(n) = n * factorial(n - 1).

Expected Output:

120
Topics:
Functions/Methods
๐Ÿ“ฅ Auto-Input:
5\n
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.