Computer Science, asked by ganeshkale3530, 10 months ago

Create the flowchart to find factorial of the number

Answers

Answered by RajkisanS
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