Challenge 1: Find The Factorial
This lesson will test your knowledge of loops.
We'll cover the following...
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.
...