Create the flowchart to find factorial of the number
Answers
Answered by
3
Answer:
Explanation:
n=int(input("Enter n:"))
if(n==0):
fact=1
fact=1
for i in range(1,n+1):
fact=fact*i
print(fact)
Similar questions