This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 5;
y_correct = 120;
assert(isequal(fact(x),y_correct))
ans =
120
|
2 | Pass |
%%
x = 8;
y_correct = 40320;
assert(isequal(fact(x),y_correct))
ans =
40320
|
3 | Pass |
%%
x = 33;
y_correct = 8.683317618811886e+36;
assert(isequal(fact(x),y_correct))
ans =
8.6833e+36
|
232 Solvers
573 Solvers
359 Solvers
201 Solvers
Solving Quadratic Equations (Version 1)
427 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!