Computer Science, asked by harendrasingh3352, 3 months ago

write an algorithmto find the factorial of entered integer number

Answers

Answered by himanshu2006vps
1

Answer:

Step 1 : Start

Start 2 : Read n

Start 3 : Initialize counter variable i to 1 and fact to 1

Start 4 : if i <= n go to step 5 otherwise goto step 7

Start 5 : calculate fact = fact * i

Start 6 : increment counter variable i and goto step 4

Start 7 : Write fact.

Start 8 : Stop

Similar questions