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 Odpowiedź
+ 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