write a flowchat to display the product of 10 numbers
Answers
Answered by
0
Answer:
Explanation:
1,2,3,4,5,6,7,8,9
Answered by
2
Explanation:
using FOR loop
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
_______________thank u
Similar questions