Draw the flowchart to find the Range of set of N numbers
Answers
Answered by
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