Is it possible to make program of 100 factorial?if yes then how? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Is it possible to make program of 100 factorial?if yes then how?

what we will use to store the complete value of 100 factorial.Post code for this

25th Feb 2017, 2:20 AM
gandharv sharma
gandharv sharma - avatar
1 Answer
+ 1
Python implementation: def factorial(n): if n == 0: return 1 else: return n * factorial(n-1) print (factorial(100))
25th Feb 2017, 4:45 AM
Paul
Paul - avatar