Computer Science, asked by Jathin950, 3 months ago

Draw the flowchart to find the Range of set of N numbers

Answers

Answered by aydivirs
0

Answer:

Explanation:

start

Input: n

product = 1

for i=1 to n

product = product*i

i = i + 1

end for loop

print product

end

using WHILE loop

start

Input: n

product = 1

i=1

while(i<=n)

product = product*i

i = i + 1

end while loop

print product

end

Similar questions