...

/

Challenge 1: Find The Factorial

Challenge 1: Find The Factorial

This lesson will test your knowledge of loops.

Problem Statement

The task is to print the factorial of a number n.

The factorial of a number n is the product of all numbers from 1 to n.

factorial(n)=n(n1)(n2)...1 ...