p=1
for n=2 to 20 step 2
p = p*n
next
print p
Draw a flowchart and algorithm pseudo code to print the product of the first 10 even number.
2 answers
Using pseudocode or a flowchart, develop the logic for a program that accepts a number as input and displays the value that is 10 more than the number.