...

/

Exercise: The Factorial of a Number (Loops)

Exercise: The Factorial of a Number (Loops)

Let's calculate the factorial of an integer.

We'll cover the following...

Problem Statement

For an integer, n, the factorial is its product with all the positive integers before it. The factorial is denoted by the ! character.

In ...