Welcome to CSC200 Lab 3

n! (read n factorial) is given by:
n!=n(n-1)(n-2)...(2)(1).
Factorials grow very large quickly and are thus difficult to find precisely. Sterling's formula is a way to approximate a factorial for large n:

.

The exp function in the <cmath> header file gives the value of e raised to the given power (see appendix 4 in Savitch or C.5 in Dale/Weems). To compute the absolute value of the difference, you will need the fabs() function. To compute the exponent, use pow(,) and sqrt() for the square root. Compute the value of 15! four ways:
Use 3.141592653589793238462 as your value of Pi and compute the absolute value of the difference.