Computer Science, asked by raiyashwant9090, 3 months ago

write a program in C++ to find fictorial of any positive integer number​

Answers

Answered by yojashvithakur4831
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