Computer Science, asked by seemap8696, 1 year ago

Write a program to determine whether n is a factorial number or not. A factorial number is a number that is a factorial of another number.

Answers

Answered by kanika575
0

Answer:

It is wasteful calculating factorials continuously like that since you're duplicating the work done in x! when you do (x+1)!, (x+2)! and so on.

Similar questions