โ Back to Methods
Question 143
Factorial Method
Factorial Method
Complete the static methodFactorialso it returns n! (the product of 1..n) using a loop. Use along. The factorial of 0 is 1. Do NOT write a Main method. For Factorial(5) the program prints 120.
Expected Output:
120
Topics:
Methods
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.