Math.factorial( int n ) Calculate n! ( factorial of n ) @return int Math.factorial.return n! = 1 x 2 x 3 x ... x (n-1) x n NOTE: 0! = 1 @params int n n for n! @example Math.factorial( 3 ) 6
@author mathphysicscomputer @authorEmail math.physics.computer@gmail.com