Write a Python function to calculate the factorial of a number (a non-negative integer). The function accepts the number as an argument
- برمجة
- برمجة بايثون
- 2021-04-16
- salsabeelalhams99111801528
الأجوبة
def factorial(n):
if n == 0:
return 1
else:
return n * factorial(n-1)
n=int(input("Input a number to compute the factiorial : "))
print(factorial(n))
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال