This isn't hard

Algebra Level 1

Compute 10!


The answer is 3628800.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

4 solutions

Munem Shahriar
Aug 7, 2017

10 ! = 1 × 2 × 3 × 4 × 5 × 6 × 7 × 8 × 9 × 10 10! = 1 \times 2 \times 3 \times 4 \times 5 \times 6 \times 7 \times 8 \times 9 \times 10

= 3628800 =3628800

10!=3628800

Haider Ali
Mar 22, 2015

this C program computes factorial by recursion method . double factorial(unsigned int n) { double fact=1.0;

if( n > 1 )
    for(unsigned int k=2; k<=n; k++)
        fact = fact*k;

return f;

}

Edwin Gray
Apr 3, 2019

6! = 720 , 7 8 = 56, 6! 56 = 40320, 9*10 = 90, 40320 * 90 =3628800.

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...