Write a recursive function to find the factorial of a non-negative integer n.
Answers
Answered by
3
Answer:
hello,
the function is using python
Explanation:
#factorial of number using recursion
def factorial(n):
if n==1:
return 1
else:
fact=n*factorial(n-1)
return fact
# main
num=int(input("enter the number"))
print(factorial(num))
hope it helps you
please mark brainliest
@ItzSnowySecret07
Similar questions
English,
2 months ago
Social Sciences,
2 months ago
Math,
5 months ago
Math,
5 months ago
English,
11 months ago
Social Sciences,
11 months ago