Factorial is multiplication of integers. So factorial of 6 is 720 = 1 * 2 * 3 * 4* 5 *6
Thus 6 factorial = factorial(720). Given n, return t, the factorial number for n.
Example: Input n = 6 Output t is 720
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers446
Suggested Problems
-
Getting the row and column location from a matrix
297 Solvers
-
Longest run of consecutive numbers
6459 Solvers
-
Remove the two elements next to NaN value
703 Solvers
-
331 Solvers
-
Find the sides of an isosceles triangle when given its area and height from its base to apex
2142 Solvers
More from this Author2
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
I cant use factorial function?