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
1 Antwort
+ 1
Python implementation:
def factorial(n):
if n == 0:
return 1
else:
return n * factorial(n-1)
print (factorial(100))