CJCoding With Joseph

Function: Factorial

Complete the function factorial so it returns n! (the product of all integers from 1 to n). The main function reads n and prints the factorial.

Example: input 5 prints 120.

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.