Assignment 2: Factorial
Description
In mathematics, the factorial of a non-negative integer n, denoted by n!, is the product of all positive integers less than or equal to n.
The factorial operation is encountered in many areas of mathematics, notably in combinatorics, algebra, and mathematical analysis.
Task
Create a program that ask the user for number and then displays the factorial of that number
Post a screen capture of your program being executed a couple of times.
Post a screen capture of the code.
Question
1) What is an accumulator?
an accumulator is used to repeat a process like adding subtracting multiplying dividing
2) What are some key words/phrases when reading a problem that lets you know that an accumulator is needed?
factorial C: