write a program in C++ to find fictorial of any positive integer number
Answers
Answered by
3
Answer:
The factorial of a positive integer n is equal to 1*2*3*...n. You will learn to calculate the factorial of a number using for loop .The factorial of a number is the product of all the integers from 1 to that number. The factorial can only be defined for positive integers.
The factorial of a negative number doesn't exist. And the factorial of 0 is 1.
Similar questions