Computer Science, asked by shubham274sd, 2 months ago

Q. 2 B.Write an algorithm and draw a flowchart to find factorial of numbers.​

Answers

Answered by madhalaimuthucharlas
2

Answer:

Algorithm

Explanation:

1. Start

2. Read the input from user and store as num

3. Initialise factorial = 1 and i = 1

4. Repeat until i = num

5. Factorial = factorial*i

6. i = i +1

7. Give the output

8.stop

Similar questions